diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..ede172fd --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +# If you know it's a text file, don't use "=auto" because with that you're +# letting Git decide whether it's text (and YOU already know it IS). + +*.css text +*.csv text +*.html text +*.jpg binary +*.js text +*.json text +*.md text +*.pdf binary +*.png binary +*.py text +*.rego text +*.sh text eol=lf +*.svg text +*.txt text +*.yaml text +*.yml text +.gitattributes text +.gitignore text +LICENSE text +MANIFEST.in text diff --git a/.github/actions/setup-dependencies-macos/action.yml b/.github/actions/setup-dependencies-macos/action.yml index 8562f49d..a66ecb77 100644 --- a/.github/actions/setup-dependencies-macos/action.yml +++ b/.github/actions/setup-dependencies-macos/action.yml @@ -5,7 +5,7 @@ inputs: default: "macos" opa-version: required: true - default: "0.60.0" + default: "v0.60.0" python-version: required: true @@ -15,10 +15,9 @@ runs: - name: Setup virtualenv shell: bash run: | - pip install virtualenv - virtualenv -p python .venv + python -m venv .venv source .venv/bin/activate - + - name: Install dependencies shell: bash run: | @@ -30,5 +29,5 @@ runs: - name: Download OPA executable shell: bash run: | - python download_opa.py -v ${{ inputs.opa-version }} -os ${{ inputs.operating-system }} - chmod +x opa_darwin_amd64 + scubagoggles setup -m -nc -nd -d ~/scubagoggles -r ~/scubagoggles -c credentials.json + scubagoggles getopa -v ${{ inputs.opa-version }} diff --git a/.github/actions/setup-dependencies-windows/action.yml b/.github/actions/setup-dependencies-windows/action.yml index 5025e459..32ac1294 100644 --- a/.github/actions/setup-dependencies-windows/action.yml +++ b/.github/actions/setup-dependencies-windows/action.yml @@ -5,7 +5,7 @@ inputs: default: "windows" opa-version: required: true - default: "0.60.0" + default: "v0.60.0" python-version: required: true @@ -15,9 +15,8 @@ runs: - name: Setup virtualenv shell: powershell run: | - pip install virtualenv python -m venv .venv - .venv\Scripts\activate + .venv\Scripts\activate.ps1 - name: Install dependencies shell: powershell @@ -29,4 +28,6 @@ runs: - name: Download OPA executable shell: powershell - run: python download_opa.py -v ${{ inputs.opa-version }} -os ${{ inputs.operating-system }} + run: | + scubagoggles setup -m -nc -nd -d ~/scubagoggles -r ~/scubagoggles -c credentials.json + scubagoggles getopa -v ${{ inputs.opa-version }} diff --git a/.github/workflows/get_opa_hash.yml b/.github/workflows/get_opa_hash.yml index bd376d53..110b7249 100644 --- a/.github/workflows/get_opa_hash.yml +++ b/.github/workflows/get_opa_hash.yml @@ -13,6 +13,6 @@ jobs: ref: main - name: Get OPA Hash run: | - cd ./repo/utils + cd ./repo/scubagoggles/utils chmod +x checkOPAHash.sh ./checkOPAHash.sh diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 3422ac92..03df2711 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -20,18 +20,18 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: ["3.9.2"] + python-version: ["3.9.19"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt - pip install pylint==3.2.7 pytest selenium + pip install pylint pytest selenium - name: Analysing the code with pylint run: | pylint -d R0913,R0914,R0915,R1702,W0718,W0719,R0801 $(git ls-files '*.py') diff --git a/.github/workflows/run_opa_tests.yml b/.github/workflows/run_opa_tests.yml index 66452086..e84cd271 100644 --- a/.github/workflows/run_opa_tests.yml +++ b/.github/workflows/run_opa_tests.yml @@ -28,15 +28,15 @@ jobs: version: latest - name: Run OPA Check - run: opa check rego Testing/RegoTests --strict + run: opa check scubagoggles/rego scubagoggles/Testing/RegoTests --strict - name: Run OPA Tests - run: opa test rego/*.rego Testing/RegoTests/**/*.rego -v + run: opa test scubagoggles/rego/*.rego scubagoggles/Testing/RegoTests/**/*.rego -v - name: Setup Regal - uses: StyraInc/setup-regal@v0.2.0 + uses: StyraInc/setup-regal@v1 with: - version: v0.15.0 + version: 0.27.0 - name: Run Regal Lint - run: regal lint --format github rego Testing + run: regal lint --format github scubagoggles/rego scubagoggles/Testing/RegoTests diff --git a/.github/workflows/run_release.yml b/.github/workflows/run_release.yml index 4aa433ce..8032e9c7 100644 --- a/.github/workflows/run_release.yml +++ b/.github/workflows/run_release.yml @@ -1,4 +1,4 @@ -on: +on: workflow_dispatch: inputs: releaseName: @@ -14,33 +14,42 @@ name: Build Release jobs: build-and-deploy: - runs-on: windows-latest + runs-on: ubuntu-latest env: + PYTHON_VERSION: "3.12" RELEASE_VERSION: ${{ inputs.version }} permissions: contents: write steps: - - name: Checkout - uses: actions/checkout@v4 - with: - path: repo - ref: main - - name: Package Repo for release - shell: pwsh - run: | - $PackageName = "scubagoggles" - Remove-Item -Recurse -Force repo -Include .git* - Move-Item -Path repo -Destination "${PackageName}-${env:RELEASE_VERSION}" -Force - Compress-Archive -Path "${PackageName}-${env:RELEASE_VERSION}" -DestinationPath "${PackageName}-${env:RELEASE_VERSION}.zip" - Get-ChildItem -Path . | Write-Output - - name: release - uses: softprops/action-gh-release@v1 - id: create_release - with: - draft: true - prerelease: false - name: v${{ inputs.releaseName }} - tag_name: v${{ inputs.version }} - files: scubagoggles-${{ inputs.version }}.zip - generate_release_notes: true - fail_on_unmatched_files: true + - name: Checkout + uses: actions/checkout@v4 + - name: Set up Python ${{ env.PYTHON_VERSION }} + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHON_VERSION }} + - name: Install Python dependencies + run: pip install -r requirements.txt + - name: Package Repo for release + shell: bash + run: | + reqv="${{ inputs.version }}" + reqv="${reqv//[[:space:]]/}" + [[ ! "$reqv" =~ ^[0-9]{1,2}(\.[0-9]{1,2}){2}$ ]] \ + && echo "invalid request version: $reqv" && exit 1 + sgv=$(grep -o '[0-9]\+\.[0-9]\+\.[0-9]\+' scubagoggles/__init__.py) + [[ "$reqv" == "$sgv" ]] \ + || (echo "version mismatch - current: $sgv" && exit 1) + ./scubagoggles/utils/build.sh -r "$PWD" -t "$GITHUB_REF_NAME" + - name: release + uses: softprops/action-gh-release@v1 + id: create_release + with: + draft: true + prerelease: false + name: v${{ inputs.releaseName }} + tag_name: v${{ inputs.version }} + files: | + scubagoggles-*-py3-none-any.whl + scubagoggles-*.tar.gz + generate_release_notes: true + fail_on_unmatched_files: true diff --git a/.github/workflows/run_smoke_test.yml b/.github/workflows/run_smoke_test.yml index eee99664..5cf2d67b 100644 --- a/.github/workflows/run_smoke_test.yml +++ b/.github/workflows/run_smoke_test.yml @@ -1,5 +1,5 @@ -name: Run Smoke Test -on: +name: Run Smoke Test +on: pull_request: types: [opened, reopened] branches: @@ -32,7 +32,7 @@ on: description: "Choose OPA version" required: true type: string - default: "0.60.0" + default: "v0.60.0" jobs: configuration: @@ -77,11 +77,11 @@ jobs: - name: Setup Python v${{ matrix.python-version }} uses: actions/setup-python@v5 - with: + with: python-version: ${{ matrix.python-version }} cache: "pip" cache-dependency-path: "requirements.txt" - + - name: Setup Dependencies (Windows) if: ${{ matrix.operating-system == 'windows-latest' }} uses: ./.github/actions/setup-dependencies-windows @@ -89,7 +89,7 @@ jobs: operating-system: "windows" opa-version: ${{ needs.configuration.outputs.opa-version }} python-version: ${{ matrix.python-version }} - + - name: Setup Dependencies (macOS) if: ${{ matrix.operating-system == 'macos-latest' }} uses: ./.github/actions/setup-dependencies-macos @@ -97,13 +97,13 @@ jobs: operating-system: "macos" opa-version: ${{ needs.configuration.outputs.opa-version }} python-version: ${{ matrix.python-version }} - + - name: Setup credentials for service account id: create-json uses: jsdaniell/create-json@v1.2.3 - with: + with: name: "credentials.json" json: ${{ secrets.GWS_GITHUB_AUTOMATION_CREDS }} - name: Run ScubaGoggles and check for correct output - run: pytest ./Testing/Functional/SmokeTests/ -vvv --subjectemail="${{ secrets.GWS_SUBJECT_EMAIL }}" --customerdomain="${{ secrets.GWS_DOMAIN }}" + run: pytest ./scubagoggles/Testing/Functional/SmokeTests/ -vvv --subjectemail="${{ secrets.GWS_SUBJECT_EMAIL }}" --customerdomain="${{ secrets.GWS_DOMAIN }}" diff --git a/.regal/config.yaml b/.regal/config.yaml index 04f267ab..ad7e3a4a 100644 --- a/.regal/config.yaml +++ b/.regal/config.yaml @@ -1,60 +1,91 @@ -# Regal linter configuration -# All rules documented here: -# https://docs.styra.com/regal/category/rules -rules: - custom: - naming-convention: - # Codifying the conventions used in this project. - # By all means, change this to be less restrictive - # if you wish. - level: error - conventions: - - pattern: '^[A-Z]+[a-zA-Z0-9_]+$|^tests$|^test_|^check_' - targets: - - rule - - pattern: '^[A-Z]+[a-zA-Z0-9_]+$' - targets: - - function - - pattern: '^[a-z]+$' - targets: - - package - idiomatic: - no-defined-entrypoint: - # This is a good practice for documentation, and - # compilation to Wasm/IR, but not a requirement. - # Safe to ignore. - level: ignore - imports: - implicit-future-keywords: - # This rule is on it's way out anyway, as future - # versions of OPA will make these keywords standard. - level: ignore - style: - external-reference: - # This rule is quite opinionated / style preference - # safe to ignore. - level: ignore - file-length: - level: ignore - no-whitespace-comment: - # This repo is actually good about this, but frequently - # uses '#--' as a delimeter of sorts. That should be OK, - # and the next version of Regal will allow for exceptions - # like this: https://github.com/StyraInc/regal/issues/379 - level: ignore - opa-fmt: - level: ignore - prefer-snake-case: - # This is the default style preference for Rego, but since - # the style of this project better matches the domain it is - # modeling, we'll ignore this rule in favor of the custom - # naming-convention rule defined above. - level: ignore - rule-length: - level: ignore - todo-comment: - level: ignore - testing: - test-outside-test-package: - # This is just a style preference - level: ignore \ No newline at end of file +# Regal linter configuration +# All rules documented here: +# https://docs.styra.com/regal/category/rules +rules: + custom: + naming-convention: + # Codifying the conventions used in this project. + # By all means, change this to be less restrictive + # if you wish. + level: error + conventions: + - pattern: '^[A-Z]+[a-zA-Z0-9_]+$|^tests$|^test_|^check_' + targets: + - rule + - pattern: '^[A-Z]+[a-zA-Z0-9_]+$' + targets: + - function + - pattern: '^[a-z]+$' + targets: + - package + idiomatic: + no-defined-entrypoint: + # This is a good practice for documentation, and + # compilation to Wasm/IR, but not a requirement. + # Safe to ignore. + level: ignore + directory-package-mismatch: + # Will prefixing the packages with "scubagoggles.rego" really + # be an improvement? + level: ignore + imports: + implicit-future-keywords: + # This rule is on it's way out anyway, as future + # versions of OPA will make these keywords standard. + level: ignore + prefer-package-imports: + # The following are used so often that there's no need + # for the "utils." prefix every single time they're used. + ignore-import-paths: + - data.utils.GetFriendlyEnabledValue + - data.utils.PolicyApiInUse + - data.utils.FailTestBothNonCompliant + - data.utils.FailTestGroupNonCompliant + - data.utils.FailTestOUNonCompliant + - data.utils.FailTestNonCompliant + - data.utils.FailTestNoEvent + - data.utils.PassTestResult + - data.utils.PassTestResultWithMessage + use-rego-v1: + # For now, anyway... + level: ignore + performance: + with-outside-test-context: + level: ignore + style: + external-reference: + # This rule is quite opinionated / style preference + # safe to ignore. + level: ignore + file-length: + level: ignore + messy-rule: + # This is all over the place with "tests", and the way we've + # done it (by baseline) makes sense. + level: ignore + no-whitespace-comment: + # This repo is actually good about this, but frequently + # uses '#--' as a delimeter of sorts. That should be OK, + # and the next version of Regal will allow for exceptions + # like this: https://github.com/StyraInc/regal/issues/379 + level: ignore + opa-fmt: + level: ignore + pointless-reassignment: + # If this prevents duplicate strings all over the place, + # then it's worth it. + level: ignore + prefer-snake-case: + # This is the default style preference for Rego, but since + # the style of this project better matches the domain it is + # modeling, we'll ignore this rule in favor of the custom + # naming-convention rule defined above. + level: ignore + rule-length: + level: ignore + todo-comment: + level: ignore + testing: + test-outside-test-package: + # This is just a style preference + level: ignore diff --git a/BRANCHINGSTRUCTURE.md b/BRANCHINGSTRUCTURE.md index 3a74b26e..7fbb446a 100644 --- a/BRANCHINGSTRUCTURE.md +++ b/BRANCHINGSTRUCTURE.md @@ -1,4 +1,5 @@ # Branching Structure -The Branching Structure flow diagram describes the branching strategy implemented in the ScubaGoggles project. +The Branching Structure flow diagram describes the branching strategy +implemented in the ScubaGoggles project. -![image](/docs/images/scubagoggles_branching_structure.svg) \ No newline at end of file +![image](images/scubagoggles_branching_structure.svg) diff --git a/DEVELOPMENTGUIDE.md b/DEVELOPMENTGUIDE.md index 57d63d47..e83fdd37 100644 --- a/DEVELOPMENTGUIDE.md +++ b/DEVELOPMENTGUIDE.md @@ -8,7 +8,7 @@ We adhere to [GitHub flow](https://docs.github.com/en/get-started/using-github/g There are exceptions to this, necessitated by the extensive review process the baseline documents themselves undergo, during which no baseline changes can be made. To accommodate this, the development lifecycle on ScubaGoggles is as follows: -![image](/docs/images/scubagoggles_lifecycle.svg) +![image](images/scubagoggles_lifecycle.svg) Baseline submission triggers a baseline freeze, at which point the following actions need to be performed: diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..f0849d41 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,10 @@ +# This manifest is used to ensure that certain non-Python files are included +# in the ScubaGoggles distribution. The following subdirectories (and their +# contents) are included: + +graft scubagoggles/baselines +graft scubagoggles/rego +graft scubagoggles/reporter +graft scubagoggles/sample-report +graft scubagoggles/Testing +graft scubagoggles/utils diff --git a/README.md b/README.md index 1cb2cc2d..488b099a 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,25 @@ -![CISA Logo](/docs/images/cisa.png) +![CISA Logo](docs/images/cisa.png)
-

GWS Secure Configuration Baseline Assessment Tool

+

GWS Secure Configuration Baseline Assessment Tool

-Developed by CISA, ScubaGoggles is an assessment tool that verifies a Google Workspace (GWS) organization's configuration conforms to the policies described in the Secure Cloud Business Applications ([SCuBA](https://cisa.gov/scuba)) Secure Configuration Baseline [documents](/baselines/README.md). +Developed by CISA, ScubaGoggles is an assessment tool that verifies a Google +Workspace (GWS) organization's configuration conforms to the policies +described in the Secure Cloud Business Applications +([SCuBA](https://cisa.gov/scuba)) Secure Configuration +Baseline [documents](scubagoggles/baselines/README.md). For the Microsoft 365 (M365) rendition of this tool, see [ScubaGear](https://github.com/cisagov/ScubaGear). @@ -28,43 +32,39 @@ We use a three-step process: 2. **Verify**. Compare the exported settings from the previous step with the configuration prescribed in the baselines. We do this using [OPA Rego](https://www.openpolicyagent.org/docs/latest/policy-language/#what-is-rego), a declarative query language for defining policy. 3. **Report**. Package the results as HTML and JSON. -## Limitations of the tool -The majority of the conformance checks done by ScubaGoggles rely on [GWS Admin log events](https://support.google.com/a/answer/4579579?hl=en). If there is no log event corresponding to a SCuBA baseline policy, ScubaGoggles will indicate that the setting currently can not be checked on its HTML report output. In this situation, we recommend you manually review your GWS security configurations with the SCuBA security baselines. See [Limitations](/docs/usage/Limitations.md) for more details. - ## Table of Contents ### Installation -- [Download and Python Install](/docs/installation/DownloadAndInstall.md) -- [Download the OPA Executable](/docs/installation/OPA.md) +- [Download and Python Install](docs/installation/DownloadAndInstall.md) +- [Download the OPA Executable](docs/installation/OPA.md) ### Prerequisites -- [Permissions](/docs/prerequisites/Prerequisites.md#permissions) -- [Create a Project](/docs/prerequisites/Prerequisites.md#create-a-project) +- [Permissions](docs/prerequisites/Prerequisites.md#permissions) +- [Create a Project](docs/prerequisites/Prerequisites.md#create-a-project) ### Authentication -- [Authentication Methods](/docs/authentication/AuthenticationMethods.md) -- [Using OAuth](/docs/authentication/OAuth.md) -- [Using a Service Account](/docs/authentication/ServiceAccount.md) +- [Authentication Methods](docs/authentication/AuthenticationMethods.md) +- [Using OAuth](docs/authentication/OAuth.md) +- [Using a Service Account](docs/authentication/ServiceAccount.md) ### Usage -- [Usage: Parameters](/docs/usage/Parameters.md) -- [Usage: Config File](/docs/usage/Config.md) -- [Usage: Examples](/docs/usage/Examples.md) -- [Reviewing Output](/docs/usage/ReviewOutput.md) -- [Limitations](/docs/usage/Limitations.md) - -### Upgrading and Maintenance -- [Upgrading ScubaGoggles](/docs/upgrading/Upgrading.md#upgrading-scubagoggles) -- [Upgrading OPA](/docs/upgrading/Upgrading.md#upgrading-opa) +- [Usage: Parameters](docs/usage/Parameters.md) +- [Usage: Config File](docs/usage/Config.md) +- [Usage: Examples](docs/usage/Examples.md) +- [Reviewing Output](docs/usage/ReviewOutput.md) +- [Limitations](docs/usage/Limitations.md) ### Troubleshooting -- [Lots of Manual Checks](/docs/troubleshooting/Troubleshooting.md#lots-of-manual-checks) -- [Not Authorized to Access This Resource](/docs/troubleshooting/Troubleshooting.md#not-authorized-to-access-this-resource) -- [scubagoggles Not Found](/docs/troubleshooting/Troubleshooting.md#scubagoggles-not-found) -- [Unable to view HTML report due to environment limitations](/docs/troubleshooting/Troubleshooting.md#unable-to-view-html-report-due-to-environment-limitations) +- [Lots of Manual Checks](docs/troubleshooting/Troubleshooting.md#lots-of-manual-checks) +- [Not Authorized to Access This Resource](docs/troubleshooting/Troubleshooting.md#not-authorized-to-access-this-resource) +- [scubagoggles Not Found](docs/troubleshooting/Troubleshooting.md#scubagoggles-not-found) +- [Unable to view HTML report due to environment limitations](docs/troubleshooting/Troubleshooting.md#unable-to-view-html-report-due-to-environment-limitations) ## Project License -Unless otherwise noted, this project is distributed under the Creative Commons Zero license. With developer approval, contributions may be submitted with an alternate compatible license. If accepted, those contributions will be listed herein with the appropriate license. +Unless otherwise noted, this project is distributed under the Creative +Commons Zero license. With developer approval, contributions may be +submitted with an alternate compatible license. If accepted, those +contributions will be listed herein with the appropriate license. diff --git a/Testing/Functional/SmokeTests/smoke_test.py b/Testing/Functional/SmokeTests/smoke_test.py deleted file mode 100644 index 3774e20c..00000000 --- a/Testing/Functional/SmokeTests/smoke_test.py +++ /dev/null @@ -1,72 +0,0 @@ -""" -smoke_test.py declares a SmokeTest class for ScubaGoggles automation testing. -""" - -import subprocess -import os -import pytest -from smoke_test_utils import ( - get_output_path, - prepend_file_protocol, - get_required_entries, - verify_all_outputs_exist, - verify_output_type, - run_selenium, - verify_scubaresults, -) - -SAMPLE_REPORT = "sample-report" -SCUBA_RESULTS = "ScubaResults.json" -BASELINE_REPORTS = "BaselineReports.html" - -class SmokeTest: - """ - Pytest class to encapsulate the following test cases: - - - Generate the correct output files (BaselineReports.html, ScubaResults.json, etc) - - Check the content of html files, verify href attributes are correct, etc - - Check if ScubaResults.json contains errors in the summary. If errors exist, then - either API calls or functions produced exceptions which need to be handled - """ - def test_scubagoggles_output(self, subjectemail): - """ - Test if the `scubagoggles gws` command generates correct output for all baselines. - - Args: - subjectemail: The email address of a user for the service account - """ - try: - command: str = f"scubagoggles gws --subjectemail {subjectemail} --quiet" - subprocess.run(command, shell=True, check=True) - output_path: str = get_output_path() - output: list = verify_output_type(output_path, []) - required_entries = get_required_entries(os.path.join(os.getcwd(), SAMPLE_REPORT), []) - verify_all_outputs_exist(output, required_entries) - except (OSError, ValueError, Exception) as e: - pytest.fail(f"An error occurred, {e}") - - def test_scubaresults(self): - """ - Determine if ScubaResults.json contains API errors or exceptions. - """ - try: - output_path: str = get_output_path() - scubaresults_path: str = os.path.join(output_path, SCUBA_RESULTS) - with open(scubaresults_path, encoding="utf-8") as jsonfile: - verify_scubaresults(jsonfile) - except (ValueError, Exception) as e: - pytest.fail(f"An error occurred, {e}") - - def test_scubagoggles_report(self, browser, customerdomain): - """ - Test if the generated baseline reports are correct, - i.e. BaselineReports.html, CalendarReport.html, ChatReport.html - """ - try: - output_path: str = get_output_path() - report_path: str = prepend_file_protocol(os.path.join(output_path, BASELINE_REPORTS)) - browser.get(report_path) - run_selenium(browser, customerdomain) - except (ValueError, AssertionError, Exception) as e: - browser.quit() - pytest.fail(f"An error occurred, {e}") diff --git a/baselines/README.md b/baselines/README.md deleted file mode 100644 index 02d907ce..00000000 --- a/baselines/README.md +++ /dev/null @@ -1,11 +0,0 @@ -Individual baselines can be visited directly at the links below: - -- [Common Controls](/baselines/commoncontrols.md) -- [Gmail](/baselines/gmail.md) -- [Google Calendar](/baselines/calendar.md) -- [Google Chat](/baselines/chat.md) -- [Google Classroom](/baselines/classroom.md) -- [Google Drive and Docs](/baselines/drive.md) -- [Google Meet](/baselines/meet.md) -- [Google Sites](/baselines/sites.md) -- [Groups for Business](/baselines/groups.md) diff --git a/docs/authentication/AuthenticationMethods.md b/docs/authentication/AuthenticationMethods.md index 867c060d..a8c60cdc 100644 --- a/docs/authentication/AuthenticationMethods.md +++ b/docs/authentication/AuthenticationMethods.md @@ -1,15 +1,15 @@ -# Authentication Methods - -ScubaGoggles supports both OAuth and Service Accounts for authorization/authentication. See the following table for the tradeoffs between the two methods. - -| OAuth | Service Account | -| -------- | ------- | -| + Allows user consent to specific scopes | - Requires domain-wide delegation | -| - Requires a browser for authentication | + Does not require a browser for authentication, allowing for more automation. | - -After determining which method is most appropriate for your organization, follow the instructions in either [Using OAuth](/docs/authentication/OAuth.md) or [Using a Service Account](/docs/authentication/ServiceAccount.md). - -## Navigation -- Continue to [Using OAuth](/docs/authentication/OAuth.md) -- Continue to [Using a Service Account](/docs/authentication/ServiceAccount.md) -- Return to [Documentation Home](/README.md) \ No newline at end of file +# Authentication Methods + +ScubaGoggles supports both OAuth and Service Accounts for authorization/authentication. See the following table for the tradeoffs between the two methods. + +| OAuth | Service Account | +| -------- | ------- | +| + Allows user consent to specific scopes | - Requires domain-wide delegation | +| - Requires a browser for authentication | + Does not require a browser for authentication, allowing for more automation. | + +After determining which method is most appropriate for your organization, follow the instructions in either [Using OAuth](OAuth.md) or [Using a Service Account](ServiceAccount.md). + +## Navigation +- Continue to [Using OAuth](OAuth.md) +- Continue to [Using a Service Account](ServiceAccount.md) +- Return to [Documentation Home](/README.md) diff --git a/docs/authentication/OAuth.md b/docs/authentication/OAuth.md index d1a79926..5a3a62a4 100644 --- a/docs/authentication/OAuth.md +++ b/docs/authentication/OAuth.md @@ -1,50 +1,62 @@ -# Using OAuth -Only complete this section if not authenticating via [Service Account](/docs/authentication/ServiceAccount.md). See [Authentication Methods](/docs/authentication/AuthenticationMethods.md) for more details. - -## Create an OAuth credential -1. Be signed into http://console.cloud.google.com/. -1. From the hamburger menu on the left, select **APIs & Services** -> **OAuth consent screen** -1. Select **Internal** for **User Type** -1. Click **Create** -1. Fill in your **App name** and **User support email** -1. Scroll down to the **Authorized Domains** section -1. Under **Authorized domains**, add the primary domain of your GWS organization. -1. Add another email address for **Developer contact information** -1. Click **SAVE AND CONTINUE** -1. Do nothing on the **Scopes** screen, just click **SAVE AND CONTINUE** -1. Review summary, then click **BACK TO DASHBOARD** -1. Click **Credentials** from the menu on the left -1. Click **CREATE CREDENTIALS** -1. Select **Oauth client ID** -1. Select **Web application** for **Application type** -1. Give name as appropriate -1. Under **Authorized redirect URIs**, click "ADD URI." Add `http://localhost` and `http://localhost:8080/` -1. Click **CREATE** -1. Click **DOWNLOAD JSON** from the resulting **OAuth client created** page -1. Click **OK** -1. Move the downloaded file (begins with `client_secret*.json`) to the root directory folder of this repo, rename to `credentials.json` -1. Go back the menu on the left and click **Enabled API Services** -1. In the center screen click **Enable APIS AND Services** -1. Search for and enable the **Admin SDK API** -1. Search for and enable the **Groups Settings API** -1. During the first run of this tool your default web browser will open up a page to consent to the API scopes needed to run this tool. Sign in -with an account with the necessary privileges and click allow. - -## Add the Oauth App to the allowlist -If you've limited application access to Google's APIs in your organization, the [Common Controls: App Access to Google APIs](/baselines/commoncontrols.md#10-app-access-to-google-apis) baseline covers this topic, follow the directions below to allowlist the OAuth app. - -1. Login to https://console.cloud.google.com -2. Navigate to the appropriate project -3. Select **API's & Services** from the top left hamburger icon -4. Select **Credentials** -5. Copy your client ID under **OAuth 2.0 Client IDs** -6. Now login to [admin.google.com](https://admin.google.com/) and navigate to **Security** -> **Access and Data Control** -> **API Controls** -> **Manage Third-Party App Access** -7. Select **Add App** -> **Oauth App Name** or **Client ID** -8. Search by your **OAuth client ID** -9. Select the App -10. Select your root organization as the domain -11. Select **Trusted** - -## Navigation -- Continue to [Usage: Parameters](/docs/usage/Parameters.md) -- Return to [Documentation Home](/README.md) \ No newline at end of file +# Using OAuth +Only complete this section if not authenticating via [Service Account](ServiceAccount.md). See [Authentication Methods](AuthenticationMethods.md) for more details. + +## Create an OAuth credential +1. Sign in to your account at http://console.cloud.google.com/. +1. Click the "hamburger" menu on the left (three horizontal +bars on top of each other), and select **APIs & Services** -> **OAuth consent screen** +1. Select **Internal** for **User Type** +1. Click **Create** +1. Fill in your **App name** and **User support email** +1. Scroll down to the **Authorized Domains** section +1. Under **Authorized domains**, add the primary domain of your GWS organization. +1. Add another email address for **Developer contact information** +1. Click **SAVE AND CONTINUE** +1. Do nothing on the **Scopes** screen, just click **SAVE AND CONTINUE** +1. Review summary, then click **BACK TO DASHBOARD** +1. Click **Credentials** from the menu on the left +1. Click **CREATE CREDENTIALS** +1. Select **Oauth client ID** +1. Select **Web application** for **Application type** +1. Give name as appropriate +1. Under **Authorized redirect URIs**, click "ADD URI." Add `http://localhost` + and `http://localhost:8080/`. **NOTE** the ending slash (`/`) in the *second* + URL is **necessary**. If the slash is missing, you will eventually get an + error when running ScubaGoggles (It will be an "access blocked" error on the + Google authentication webpage. You'll also see `Error 400: + redirect_uri_mismatch`). +1. Click **CREATE** +1. Click **DOWNLOAD JSON** from the resulting **OAuth client created** page +1. Click **OK** +1. Move the downloaded file (begins with `client_secret*.json`) to the + location and name you specified when you ran the + [ScubaGoggles setup utility](../installation/DownloadAndInstall.md#ScubaGoggles-Setup-Utility). + If you have not yet run the setup utility, you will specify this file as the + credentials file when prompted by the setup utility. You'll make it easier + on yourself if you rename the file to something simple, like + `credentials.json`. +1. Go back the menu on the left and click **Enabled API Services** +1. In the center screen click **Enabled APIs & Services** +1. Search for and enable the **Admin SDK API** +1. Search for and enable the **Groups Settings API** +1. During the first run of this tool your default web browser will open up a page to consent to the API scopes needed to run this tool. Sign in +with an account with the necessary privileges and click allow. + +## Add the Oauth App to the allowlist +If you've limited application access to Google's APIs in your organization, the [Common Controls: App Access to Google APIs](../../scubagoggles/baselines/commoncontrols.md#10-app-access-to-google-apis) baseline covers this topic, follow the directions below to allowlist the OAuth app. + +1. Login to https://console.cloud.google.com +2. Navigate to the appropriate project +3. Select **API's & Services** from the top left hamburger icon +4. Select **Credentials** +5. Copy your client ID under **OAuth 2.0 Client IDs** +6. Now login to [admin.google.com](https://admin.google.com/) and navigate to **Security** -> **Access and Data Control** -> **API Controls** -> **Manage Third-Party App Access** +7. Select **Add App** -> **Oauth App Name** or **Client ID** +8. Search by your **OAuth client ID** +9. Select the App +10. Select your root organization as the domain +11. Select **Trusted** + +## Navigation +- Continue to [Usage: Parameters](../usage/Parameters.md) +- Return to [Documentation Home](/README.md) diff --git a/docs/authentication/ServiceAccount.md b/docs/authentication/ServiceAccount.md index 6b9bb609..87e45a9d 100644 --- a/docs/authentication/ServiceAccount.md +++ b/docs/authentication/ServiceAccount.md @@ -1,26 +1,26 @@ -# Using a Service Account -Only complete this section if not authenticating via [OAuth](/docs/authentication/OAuth.md). See [Authentication Methods](/docs/authentication/AuthenticationMethods.md) for more details. - -> [!Important] -> ScubaGoggles requires the service account to have [domain-wide delegation of authority](https://support.google.com/a/answer/162106?hl=en) to function. - -1. Login to https://console.cloud.google.com and navigate to your GCP project. -1. From the hamburger menu, select **IAM & Admin** -> **Service Accounts** -1. Select **CREATE SERVICE ACCOUNT**. Fill out the id field and then select **DONE** -1. Click on the newly created service account then click **KEYS** -> **ADD KEY** -> **Create new key** -> **JSON** -> **CREATE** -1. Move the downloaded file (begins with `*.json`) to the root directory folder of this repo, rename to `credentials.json` -1. Now login to [admin.google.com](https://admin.google.com/) and navigate to **Security** -> **Access and data control** -> **API controls** -1. Select **MANAGE DOMAIN WIDE DELEGATION** -1. Select **Add new** -1. Enter the `client_id` from the downloaded credentials (also visible after clicking on the created Service account under Details -> Unique ID) -1. Enter each OAuth scope as listed in [Permissions](/docs/prerequisites/Prerequisites.md#permissions) -1. Select **AUTHORIZE** -1. Finally, run ScubaGoggles with the `--subjectemail` option set to the email of an admin with necessary permissions to run ScubaGoggles. - -> [!NOTE] -> ScubaGoggles can be run using a service account in a different organization. -> To do so, specify the `--customerid` argument with the customer ID of the target organization (found in [admin.google.com](https://admin.google.com/) under **Account** -> **Account settings**) - -## Navigation -- Continue to [Usage: Parameters](/docs/usage/Parameters.md) -- Return to [Documentation Home](/README.md) \ No newline at end of file +# Using a Service Account +Only complete this section if not authenticating via [OAuth](OAuth.md). See [Authentication Methods](AuthenticationMethods.md) for more details. + +> [!Important] +> ScubaGoggles requires the service account to have [domain-wide delegation of authority](https://support.google.com/a/answer/162106?hl=en) to function. + +1. Login to https://console.cloud.google.com and navigate to your GCP project. +1. From the hamburger menu, select **IAM & Admin** -> **Service Accounts** +1. Select **CREATE SERVICE ACCOUNT**. Fill out the id field and then select **DONE** +1. Click on the newly created service account then click **KEYS** -> **ADD KEY** -> **Create new key** -> **JSON** -> **CREATE** +1. Move the downloaded file (begins with `*.json`) to the root directory folder of this repo, rename to `credentials.json` +1. Now login to [admin.google.com](https://admin.google.com/) and navigate to **Security** -> **Access and data control** -> **API controls** +1. Select **MANAGE DOMAIN WIDE DELEGATION** +1. Select **Add new** +1. Enter the `client_id` from the downloaded credentials (also visible after clicking on the created Service account under Details -> Unique ID) +1. Enter each OAuth scope as listed in [Permissions](../prerequisites/Prerequisites.md#permissions) +1. Select **AUTHORIZE** +1. Finally, run ScubaGoggles with the `--subjectemail` option set to the email of an admin with necessary permissions to run ScubaGoggles. + +> [!NOTE] +> ScubaGoggles can be run using a service account in a different organization. +> To do so, specify the `--customerid` argument with the customer ID of the target organization (found in [admin.google.com](https://admin.google.com/) under **Account** -> **Account settings**) + +## Navigation +- Continue to [Usage: Parameters](../usage/Parameters.md) +- Return to [Documentation Home](/README.md) diff --git a/docs/development/release.md b/docs/development/release.md new file mode 100644 index 00000000..c57767c4 --- /dev/null +++ b/docs/development/release.md @@ -0,0 +1,101 @@ +**NOTE** The following documentation is for ScubaGoggles +developers. + +# ScubaGoggles Release Procedure + +## Setting the Version + +Update the version in the code that matches the release version number, if this +hasn't been done already. Use the `scubagoggles version --upgrade` command +to set the version. + +Once changes in the repository have been frozen for the release, the release +branch (`main`) is tagged with the version. Use an annotated tag to mark the +release: + +``` +git tag -a v1.0.0 -m 'ScubaGoggles version 1.0.0' +git push origin v1.0.0 +``` + +## Building the Release + +ScubaGoggles uses the Python packaging process as described in the +[Python Packaging User Guide](https://packaging.python.org/en/latest/). The +`build` package is required, and is included in the `requirements.txt` file. +If `pip list` doesn't show that the `build` package is installed in your +environment, run `pip install -r requirements.txt` when your current working +directory is at the top-level directory of the ScubaGoggles repository (where +`requirements.txt` resides). + +The `setuptools` backend is used to build the ScubaGoggles packages. The +configuration (which was originally in `setup.py`) is in `pyproject.toml`. +Because there are files other than Python code, such as Markdown and Rego files, +the `MANIFEST.in` file is needed to ensure these other files are included with +the ScubaGoggles package. These two configuration files, along with the +LICENSE file, are located at the repository top-level directory. + +### Pre-release Review + +Before building the release packages, review the `classifiers`, `dependencies`, +and `requires-python` configuration parameters in `pyproject.toml`. If any of +the package dependencies change, the same changes must be reflected both in +both the `pyproject.toml` and `requirements.txt` files. + +### Building ScubaGoggles Packages + +ScubaGoggles is distributed using a binary "wheel" format, and a source code +version in a gzip-compressed "tar" format. General users will install the +binary wheel package. + +To build the packages, use the `scubagoggles/utils/build.sh` Bash script. +As it is written in Bash, it will require either Git or Cygwin on Windows. +Since Git is required for development, Git Bash should already be available +on a Windows system used for ScubaGoggles development. Because this script +is written in Bash, it will work correctly on linux and macOS systems. + +The following is the script usage: + +```shell +$ scubagoggles/utils/build.sh -h +script usage: build.sh [options] + + -h: display usage and exit + -o : create package files in this directory + -r : ScubaGoggles Git repository specification + -t : checkout tag or branch for build + defaults to top of main branch +``` + +The script creates a clean environment for building the packages. A Python +virtual environment is created in your temporary directory and the ScubaGoggles +Git repository is cloned into a subdirectory of your temporary directory. These +temporary directories are cleaned up when the script exits. + +The `-t` option allows you to provide a branch or tag that the repository will +be set to for the build. For normal releases, this tag should be the release +tag (e.g., 'v1.0.0'). By default, the build is based on the HEAD of the main +branch. + +When the build process completes, the binary and source package files are +copied to the current working directory when the script was run, or the +directory specified by the `-o` option. + +This is an abbreviated example of running the build with its output to the +console: + +```shell +$ scubagoggles/utils/build.sh +{build>>>} Creating new Python virtual environment for build... +{build>>>} Cloning Git repository... + +{build>>>} Activate Python virtual environment... +{build>>>} Install requirements and editable ScubaGoggles... + +{build>>>} Build distribution files... + +Successfully built scubagoggles-x.x.x.tar.gz and scubagoggles-x.x.x-py3-none-any.whl +{build>>>} Copying /scubagoggles-x.x.x-py3-none-any.whl to ./ +{build>>>} Copying /scubagoggles-x.x.x.tar.gz to ./ +{build>>>} Performing build cleanup... +``` diff --git a/docs/development/versioning.md b/docs/development/versioning.md new file mode 100644 index 00000000..bea24edb --- /dev/null +++ b/docs/development/versioning.md @@ -0,0 +1,177 @@ +**NOTE** The following documentation is for ScubaGoggles +developers. + +# ScubaGoggles Version + +There is only **one** location for the "official" version +number for ScubaGoggles. The version number resides in the +`scubagoggles/__init__.py`, defined in the `__version__` +variable. + +The format of the version number is `..`, +where `` is the major version number, `` is the +minor version number, and `` is the build number. +Each component is an integer. + +## The Version class + +The version number should be accessed in Python code +by using the `Version` class implemented in +`scubagoggles/version.py`. + +These `Version` class attributes are available for accessing the version number: + +| Attribute Name | Type | Description | Example | +|----------------|---------|----------------------|-------------------------| +| current | string | 'v' prefixed version | `'v1.0.0' ` | +| number | string | version | `'1.0.0' ` | +| with_name | string | product and version | `'ScubaGoggles v1.0.0'` | +| major | integer | major version | `1` | +| minor | integer | minor version | `0` | +| build | integer | build number | `0` | +| suffix | string | baseline version | `'v1.0'` | + +## Baseline Versioning + +Baseline policies in ScubaGoggles are identified by a policy +identifier. The format of the policy ID is: +`GWS...v`. The +`` identifies the Google Workspace application +as shown in the following table: + +| | Description | +|----------------|---------------------| +| CALENDAR | Calendar | +| CHAT | Chat | +| CLASSROOM | Classroom | +| COMMONCONTROLS | Common Controls | +| DRIVEDOCS | Drive and Docs | +| GMAIL | Gmail | +| GROUPS | Groups for Business | +| MEET | Meet | +| SITES | Sites | + +The `` has the format `
.`, +where `
` is the number of the section in the +baseline for the application and `` is the number of +the specific requirement in the section. + +The `` is derived from the ScubaGoggles +version number: `.`. + +### Policy Identifiers in Markdown + +Policy identifiers are used throughout the baseline +Markdown documents. Because the identifiers contain +the baseline version, the identifiers must be changed +when the ScubaGoggles version number changes (except +for the build number component). + +Changes to the policy identifiers due to the ScubaGoggles +version number changing is handled by the +`scubagoggles version` command (the functionality is +implemented in the `Version` class). There is no +manual editing necessary in the Markdown files when the +ScubaGoggles version number changes. + +### Policy Identifiers in Rego Code + +Policy identifiers are also used in the Rego code as +string values in variables. The `PolicyIdWithSuffix` +function, defined in `utils.rego`, is used to avoid the +necessity of making changes to all Rego files when the +ScubaGoggles version number changes. + +The `PolicyIdWithSuffix` function takes a single string +argument, which is the policy identifier without the +baseline version. The function adds the current baseline +version to the end of the string to form the complete +policy identifier. + +This is an example of specifying a policy identifier in +the Rego code: + +``` +PolicyId := utils.PolicyIdWithSuffix("GWS.CALENDAR.1.1") +``` + +Don't specify the complete policy identifier in comments. +There is no need to include the baseline version in the +identifier if it's necessary to reference a policy in the +comments. Including the baseline version requires a manual change +if the ScubaGoggles version changes and opens the possibility of +forgetting to make the changes. + +``` +# No version suffix in the policy identifier comment: +# Baseline GWS.CHAT.1.2 +#-- +``` + +The `scubagoggles version` command updates the single hard-coded +baseline version number in the `PolicyIdWithSuffix` function definition +in `utils.rego`. + +## Upgrading ScubaGoggles Version + +Upgrading the ScubaGoggles version is done entirely by running the +`scubagoggles version` command with the `--upgrade` option. This sets the +new version number and modifies all Markdown files and the `utils.rego` file +to replace the baseline version numbers. + +The following example shows a version upgrade to 1.0.0 with debug +logging enabled. The debug output shows the files read and indicates +any changes by showing the line number and the new content of +the line. + +```shell +> scubagoggles -log debug version --upgrade 1.0.0 +ScubaGoggles version upgrade (1.0.0) +(INFO): changing ScubaGoggles version to 1.0.0 +(DEBUG): C:\scubaDev\scubagoggles\rego\Utils.rego +(DEBUG): C:\scubaDev\scubagoggles\rego\Utils.rego: +(DEBUG): 9) BaseVersionSuffix = "v1.0" +(DEBUG): C:\scubaDev\scubagoggles\baselines\calendar.md +... + +``` + +After the version upgrade, the ScubaGoggles Git repository will indicate +the modified files. To permanently include the version changes, the +files must be committed to the repository. + +``` +> git status + +Changes not staged for commit: + (use "git add ..." to update what will be committed) + (use "git restore ..." to discard changes in working directory) + modified: scubagoggles/__init__.py + modified: scubagoggles/baselines/calendar.md + modified: scubagoggles/baselines/chat.md + modified: scubagoggles/baselines/classroom.md + modified: scubagoggles/baselines/commoncontrols.md + modified: scubagoggles/baselines/drive.md + modified: scubagoggles/baselines/gmail.md + modified: scubagoggles/baselines/groups.md + modified: scubagoggles/baselines/meet.md + modified: scubagoggles/baselines/sites.md + modified: scubagoggles/rego/Utils.rego + ... + +> git add --update +> git commit -m 'version upgrade to 1.0.0' +``` + +## Checking Version Number Consistency + +When the `scubagoggles version` command is invoked with the `--check` +option, all Markdown files and the `utils.rego` file are checked for +version numbers consistent with the current ScubaGoggles version number +defined in `scubagoggles/__init__.py`. If any inconsistencies are found, +the file name and line(s) (with line number(s)) are displayed. + +``` +> scubagoggles version --check +ScubaGoggles version check +``` diff --git a/docs/installation/DownloadAndInstall.md b/docs/installation/DownloadAndInstall.md index 42253951..0726ffda 100644 --- a/docs/installation/DownloadAndInstall.md +++ b/docs/installation/DownloadAndInstall.md @@ -1,56 +1,208 @@ -# Download and Python Install -> [!NOTE] -> Previously installed a different version of ScubaGoggles? See [Upgrading ScubaGoggles](/docs/upgrading/Upgrading.md#upgrading-scubagoggles). - -## Downloading the Latest Release -To download ScubaGoggles: - -1. Click [here](https://github.com/cisagov/ScubaGoggles/releases) to see the latest release. -2. Click scubagoggles-[latest-version].zip to download the release. -3. Extract the folder in the zip file. - -## Installing Python Dependencies -As of ScubaGoggles v0.3.0, the minimum required Python version to run the tool is `3.10.x`. While it's possible that ScubaGoggles may work with different versions of Python, 3.10 is the version we've tested and ensured works with the versions of the modules listed in ScubaGoggles' [dependencies](../../requirements.txt). - -### Installing in a Virtual Environment -The following commands are used to set up a python virtual environment (venv) to install the needed python dependencies. -Inside the release or repo folder, open up a terminal and run the following commands based on your OS. - -> [!NOTE] -> Depending on the Python installation and operating system, it might be necessary to use `pip3` and `python3` instead of `pip` and `python`. - -#### Windows -``` -pip install virtualenv -python -m venv .venv -.venv\Scripts\activate -``` - -#### macOS -``` -pip install virtualenv -virtualenv -p python .venv -source .venv/bin/activate -``` - -Users can run the tool via the `scuba.py` script as a developer or by installing the `scubagoggles` package in a python venv. -Choose either of these next steps to install the needed python dependencies in the `venv`. - -#### Installing dependencies for running scubagoggles directly -In the root directory of the release/repo, install the `scubagoggles` package and dependencies with the following command. -``` -python -m pip install . -``` - -#### Installing dependencies for running via scuba.py script -In the root directory of the release/repo, install the the required dependencies with the following command. -``` -pip install -r requirements.txt -``` - -> [!IMPORTANT] -> Users will need to rerun the `activate` script from the OS specific directions above in each new terminal session to reactivate the `venv` containing the dependencies. - -## Navigation -- Continue to [Download the OPA executable](/docs/installation/OPA.md) -- Return to [Documentation Home](/README.md) +# Getting started + +> [!IMPORTANT] +> Use of this tool requires access to an internet browser for initial setup +> and to view the html report output. + +Setting up to run ScubaGoggles for the first time involves the following steps: + +1. Install [Python 3](https://www.python.org/) on your system. +2. (Optional) Create and activate a Python virtual environment. +3. Install ScubaGoggles and dependencies into the Python environment. +4. Run `scubagoggles setup` to specify the output directory, the location of the + OPA executable, and the credentials file. By default, the setup will + download the Open Policy Agent (OPA) + executable. +5. Create a Google OAuth credential file, unless you'll be using a Google + service account. + +## Install Python 3 +Running ScubaGoggles requires Python 3.9 or higher. If Python is not installed +in your environment, please visit the [Python website](https://www.python.org/) +for instructions on how to download and install Python. + +A 64-bit operating system is required. While Python will run in a 32-bit +environment, the Open Policy Agent (OPA) required for ScubaGoggles is only +available on 64-bit platforms. + +Depending on the operating system, the command to invoke Python from the command +line is either `python` (Windows) or `python3` (linux & macOS, for backward +compatibilty with Python version 2). You will need access to a command line, +via the command window or a PowerShell window for Windows, or a terminal window +in linux & macOS. + +## Installing in a Python Virtual Environment + +A Python virtual environment dedicated to ScubaGoggles isn't strictly +necessary, but it is recommended because it will allow you to isolate +ScubaGoggles and its dependencies from other Python tools you may have running +on your system. With a virtual environment, you create it only once, but you +will need to "activate" it in a new window (i.e., process) prior to running +ScubaGoggles. A virtual environment remains activated until the window is +closed (unless you explicitly deactivate the virtual environment). + +The following commands are used to set up a python virtual environment using +the `venv` Python module. Create a window where you may enter commands on your +system. + +Use the `cd` (change directory) command to set the current working directory to +the location where you want to create the virtual environment directory. In +this example, the directory that will be created is called `scuba-env`, but +you may use a different name. + +The following examples show both the command to create the virtual environment, +followed by the command that activates the virtual environment in your current +session. The commands differ slightly depending on the operating system and +type of command window. + +**Note** the command that activates the virtual environment. You will need this +command whenever you create a new session (i.e., terminal) where you will be +running ScubaGoggles. + +### Windows + +#### Windows Command + +``` +python -m venv scuba-env +scuba-env\Scripts\activate.bat +``` + +#### Windows PowerShell +``` +python -m venv scuba-env +scuba-env\Scripts\activate.ps1 +``` + +#### Windows Git Bash +``` +python -m venv scuba-env +source scuba-env/Scripts/activate +``` + +### linux and macOS +``` +python3 -m venv scuba-env +source scuba-env/bin/activate +``` + +## Downloading the Latest ScubaGoggles Release +To download ScubaGoggles, click [here](https://github.com/cisagov/ScubaGoggles/releases) +to display the download site in a browser. For installing ScubaGoggles as a +user (and not a developer), you should download the file with the name ending +in `.whl` (known as a Python "wheel" file), for example +`scubagoggles-1.0.0-py3-none-any.whl`. + +If you are a developer, you may alternatively download the "gzipped tar" file +(file ending with `.tar.gz`), or zip file (file ending with `.zip`). You may +also clone the GitHub repository. The instructions that follow focus on the +installation for the general user. + +### Installing ScubaGoggles +ScubaGoggles is installed as a Python package, whether you are using a virtual +environment or the system's Python environment (if you have write access to it). + +Install ScubaGoggles using Python's `pip` utility. If you are using a virtual +environment, make sure your current session has activated the virtual +environment. Normally, the command you use is `pip` or `pip3`. + +``` +pip install scubagoggles-1.0.0-py3-none-any.whl +``` +where you will replace `scubagoggles-1.0.0-py3-none-any.whl` in the above +command with the location and/or name of the ScubaGoggles wheel file you +downloaded. + +This command will install ScubaGoggles and all its dependencies. The system on +which ScubaGoggles is installed must be able to access the internet so the +dependencies may be downloaded. + +## Creating the ScubaGoggles Output Directory +ScubaGoggles produces "Secure Baseline Conformance Reports", which are written +to a directory on your system. In addition, ScubaGoggles requires the OPA +executable and the Google credentials file. It is recommended that you create +a directory that will contain these required files and serve as a location +for the reports. You will run the ScubaGoggles setup utility to indicate the +location of the output directory. + +## ScubaGoggles Setup Utility +The ScubaGoggles setup utility lets you configure the data directory location, +as well as the locations of the OPA executable and the Google credentials file. +It is perfectly fine to locate the OPA executable and credentials files in the +output directory you create. Unless you specify otherwise, the OPA executable +will be downloaded to the location you specify. + +When you run the setup utility, it will create a configuration file in your +top-level user directory called `.scubagoggles` (**Note** the leading dot (.) +in the file name, which indicates a "hidden" file on linux and macOS operating +systems). + +The configuration file contains the following values used by ScubaGoggles when +running the conformance assessments: + +| Name | Description | +|-------------|---------------------------------------------------| +| credentials | Location and name of the Google credentials file. | +| opa_dir | Location of the OPA executable. | +| output_dir | Location of the ScubaGoggles output directory. | + +Run the setup utility with this command: + +```shell +scubagoggles setup +``` + +You will be prompted to enter the output directory, location of the OPA +executable, and the location and name of the Google credentials file. By +default, the OPA executable will be downloaded into the directory you specify. +You do not have to create the Google credentials file before running setup. If +the credentials file doesn't exist, you will see a warning indicating that it is +missing. You will need to have the credentials file before running the +conformance assessment. See the [instructions for creating a credentials +file](../authentication/AuthenticationMethods.md). + +These are sample outputs from running the setup utility before the required +files are available. Warnings are shown, but the `.scubagoggles` configuration +file is still created. + +### Windows Example + +``` +> scubagoggles setup +Setup: output directory +Scubagoggles output directory [C:\Users\userID\scubagoggles]? +Create directory C:\Users\userID\scubagoggles [Yes/no]? + creating: C:\Users\userID\scubagoggles + C:\Users\userID\scubagoggles +Setup: OPA executable directory +(WARNING): OPA executable not found in PATH +Location of OPA executable [C:\Users\userID\scubagoggles]? + downloading: opa_windows_amd64.exe + OPA executable: C:\Users\userID\scubagoggles\opa_windows_amd64.exe +Setup: Google API credentials file +Google credentials (JSON) file [C:\Users\userID\scubagoggles\credentials.json]? +(WARNING): Google credentials file not found in C:\Users\userID\scubagoggles\credentials.json +``` + +### Linux Example + +``` +$ scubagoggles setup +Setup: output directory +Scubagoggles output directory [/home/userID/scubagoggles]? +Create directory /home/userID/scubagoggles [Yes/no]? + creating: /home/userID/scubagoggles + /home/userID/scubagoggles +Setup: OPA executable directory +(WARNING): OPA executable not found in PATH +Location of OPA executable [/home/userID/scubagoggles]? + downloading: opa_linux_amd64_static + OPA executable: /home/userID/scubagoggles/opa_linux_amd64_static +Setup: Google API credentials file +Google credentials (JSON) file [/home/userID/scubagoggles/credentials.json]? +(WARNING): Google credentials file not found in /home/userID/scubagoggles/credentials.json +``` + +## Navigation +- Continue to [Download the OPA executable](OPA.md) +- Return to [Documentation Home](/README.md) diff --git a/docs/installation/OPA.md b/docs/installation/OPA.md index bf2135ea..ed422e50 100644 --- a/docs/installation/OPA.md +++ b/docs/installation/OPA.md @@ -1,43 +1,66 @@ - -# Download the OPA executable - -The tool makes use of [Open Policy Agent's Rego Policy language](https://www.openpolicyagent.org/docs/latest/policy-language/). -An OPA executable is required to execute this tool and can be downloaded using our `download_opa.py` script. - -``` -python download_opa.py --help -usage: download_opa.py [-h] [-v] [-os] - -Download executable the OPA executable file required to run this SCuBA tool. - -options: - -h, --help show this help message and exit - -v {0.45.0,0.46.3,0.47.4,0.48.0,0.49.2,0.50.2,0.51.0,0.52.0,0.53.1,0.54.0,0.55.0,0.56.0,0.57.1,0.58.0,0.59.0,0.60.0} - What version of OPA to download: Default version: 0.59.0 - -os {windows,macos,linux} - Operating system version of OPA to download. Default os: windows - --disablessl If there are proxy errors, try adding this switch to disable ssl verification -``` -``` -# example -python download_opa.py -v 0.60.0 -os macos -``` -1. If the above script can not execute for any reason or you would prefer to download OPA manually, go to the [Open Policy Agent website](https://www.openpolicyagent.org/docs/latest/#running-opa) -2. Check the website for a compatible OPA version (Currently v0.45.0 and above) for ScubaGoggles and select the corresponding version on top left of the website -3. Navigate to the menu on left side of the screen: `Introduction -> Running OPA -> Download OPA` -4. Follow the instructions for downloading the respective OPA executable for your OS. - -> [!NOTE] -> The following notes apply only for MAC and Linux users. -- By default on MAC and Linux systems the OPA executable will be run with `sudo`. -- Use the `scubagoggles gws --omitsudo` flag to omit running the executable with `sudo`. -- MAC and Linux OS users should have their OPA executables named `opa_darwin_amd64` or `opa_linux_amd64_static` respectively for scubagoggles execution. -- The OPA executable must also be given execute permissions -- Run the following command to give the opa executable execute permissions: -```bash -chmod +x opa_darwin_amd64 -``` - -## Navigation -- Continue to [Prerequisites](/docs/prerequisites/Prerequisites.md) -- Return to [Documentation Home](/README.md) + +# Download the OPA executable + +The tool makes use of [Open Policy Agent's Rego Policy language] +(https://www.openpolicyagent.org/docs/latest/policy-language/). By default, +the `scubagoggles setup` command downloads the OPA executable. You will only +need to download the OPA executable separately if you need a **specific** +version. Otherwise, you may skip this step and continue to +[Prerequisites](../prerequisites/Prerequisites.md). + +You may download the OPA executable, to either upgrade the version you +currently have or use a specific version, using the `scubagoggles getopa` +command: + +``` +scubagoggles getopa --help +usage: scubagoggles getopa [-h] [--nocheck] [--force] [--version ] [--opa_directory ] + +Download OPA executable + +options: + -h, --help show this help message and exit + --nocheck, -nc Do not check hash code after download + --force, -f Overwrite existing OPA executable + --version , -v + Version of OPA to download (default: latest version) + --opa_directory , -r + Directory containing OPA executable (default: location established by setup) +``` +```bash +# example +scubagoggles getopa -v v0.60.0 +``` + +If you have run the [ScubaGoggles setup utility](DownloadAndInstall.md#ScubaGoggles-Setup-Utility), +you will have specified the location of the OPA executable. This location is +used by `getopa` when downloading the OPA executable. Optionally, you may +download the executable to a location that is in the PATH environment variable. + +## Downloading the OPA Executable from the OPA Website + +1. If the above script can not execute for any reason or you would prefer to + download OPA manually, go to the [Open Policy Agent website] + (https://www.openpolicyagent.org/docs/latest/#running-opa) +2. Check the website for a compatible OPA version (Currently v0.45.0 and above) + for ScubaGoggles and select the corresponding version on top left of the + website. +3. Navigate to the menu on left side of the screen: + `Introduction -> Running OPA -> Download OPA` +4. Follow the instructions for downloading the respective OPA executable for + your OS. + +> [!NOTE] +> For linux and macOS, you must make sure the OPA executable has execute +> permission. If you downloaded the OPA executable either during the setup +> process or using the `getopa`subcommand, the permission has already been set +> correctly. + +```bash +# give the opa executable execute permissions +chmod u+x opa +``` + +## Navigation +- Continue to [Prerequisites](../prerequisites/Prerequisites.md) +- Return to [Documentation Home](/README.md) diff --git a/docs/prerequisites/Prerequisites.md b/docs/prerequisites/Prerequisites.md index ebac8c70..d2465b75 100644 --- a/docs/prerequisites/Prerequisites.md +++ b/docs/prerequisites/Prerequisites.md @@ -1,25 +1,29 @@ -# Prerequisites - -## Permissions - -The tool uses the following OAUTH API scopes: - -``` -https://www.googleapis.com/auth/admin.reports.audit.readonly, -https://www.googleapis.com/auth/admin.directory.domain.readonly, -https://www.googleapis.com/auth/admin.directory.group.readonly, -https://www.googleapis.com/auth/admin.directory.orgunit.readonly, -https://www.googleapis.com/auth/admin.directory.user.readonly, -https://www.googleapis.com/auth/apps.groups.settings -``` - -When running ScubaGoggles for the first time you will be prompted to consent to these API scopes. Users with the Super Admin role automatically have the privilege to consent to these scopes. A custom admin role can also be made with the minimum permissions to consent to these scopes. See this [Google Admin SDK Prerequisites guide](https://developers.google.com/admin-sdk/reports/v1/guides/prerequisites) for more information. - -## Create a Project -1. If you already have a Google Cloud Project that you want to utilize skip to [Authentication Methods](/docs/authentication/AuthenticationMethods.md) -2. Otherwise start by signing into http://console.cloud.google.com/. -3. Follow the [directions outlined in this guide to create a project](https://developers.google.com/workspace/guides/create-project) - -## Navigation -- Continue to [Authentication Methods](/docs/authentication/AuthenticationMethods.md) -- Return to [Documentation Home](/README.md) \ No newline at end of file +# Prerequisites + +## Permissions + +The tool uses the following OAUTH API scopes: + +``` +https://www.googleapis.com/auth/admin.reports.audit.readonly, +https://www.googleapis.com/auth/admin.directory.domain.readonly, +https://www.googleapis.com/auth/admin.directory.group.readonly, +https://www.googleapis.com/auth/admin.directory.orgunit.readonly, +https://www.googleapis.com/auth/admin.directory.user.readonly, +https://www.googleapis.com/auth/apps.groups.settings, +https://www.googleapis.com/auth/cloud-identity.policies.readonly +``` + +When running ScubaGoggles for the first time you will be prompted to consent to +these API scopes. Users with the Super Admin role automatically have the +privilege to consent to these scopes. When running ScubaGoggles for the first +time you will be prompted to consent to these API scopes. + +## Create a Project +1. If you already have a Google Cloud Project that you want to utilize skip to [Authentication Methods](../authentication/AuthenticationMethods.md) +2. Otherwise start by signing into http://console.cloud.google.com/. +3. Follow the [directions outlined in this guide to create a project](https://developers.google.com/workspace/guides/create-project) + +## Navigation +- Continue to [Authentication Methods](../authentication/AuthenticationMethods.md) +- Return to [Documentation Home](/README.md) diff --git a/docs/troubleshooting/Troubleshooting.md b/docs/troubleshooting/Troubleshooting.md index 37ef3752..0e9fc252 100644 --- a/docs/troubleshooting/Troubleshooting.md +++ b/docs/troubleshooting/Troubleshooting.md @@ -1,74 +1,85 @@ -# Troubleshooting - -## Lots of Manual Checks -The report output by ScubaGoggles may indicate that many manual checks are needed (e.g., https://github.com/cisagov/ScubaGoggles/issues/260). This is a symptom of ScubaGoggles' primary limitation. As the API calls to check most of the settings relevant to ScubaGoggles are have not been made public by Google, ScubaGoggles relies on [GWS Admin log events](https://support.google.com/a/answer/4579579?hl=en) to determine the current state. If there are no log events corresponding to a SCuBA baseline policy (e.g., because the setting hasn't been changed within the past 6 months), ScubaGoggles will indicate that the setting needs to be checked manually. See [Limitations](/docs/usage/Limitations.md) for more details. - -## Not Authorized to Access This Resource - -If an authorization error similar to the one below appears: -``` -/Users/scubagoggles/provider.py:463: RuntimeWarning: An exception was thrown trying to get the tenant info: - -``` -Ensure that you consented to the following API scopes as a user with the proper [permissions to consent](/docs/prerequisites/Prerequisites.md#permissions) and have enabled the required [APIs and Services](/docs/authentication/OAuth.md). - -## Scubagoggles Not Found -If an error similar to the one below appears: -``` -command not found: scubagoggles -``` - -Ensure that you have properly [configured the virtual environment](/docs/installation/DownloadAndInstall.md#installing-in-a-virtual-environment) and have activated the virtual environment using the OS appropriate commands. - -Alternatively, to run scubagoggles without installing it as a package, you can replace the `scubagoggles` command with `python scuba.py`. - - -## Unable to view HTML report due to environment limitations - -If you are unable to view the HTML report in a browser window, the results of the conformance scan can be viewed in their raw JSON format. - -We recommend running the conformance report in quiet mode to stop the web browser from being opened automatically. This can be done with the `--quiet` parameter: - -```scubagoggles gws --quiet``` - -Once the scan is complete, navigate to the output folder. Within the output folder, we can access the generated HTML reports, or view the results in JSON format. - -To view the results as JSON, open the `ScubaResults.json` file. - -The output will resemble the following: -``` -{ - "Summary": { - "Gmail": { - "Manual": 26, - "Passes": 9, - "Errors": 0, - "Failures": 6, - "Warnings": 2 - }, - "Groups for Business": { - "Manual": 0, - "Passes": 6, - "Errors": 0, - "Failures": 0, - "Warnings": 1 - } - }, - "Results": { - "Gmail": [ - { - "GroupName": "Mail Delegation", - "GroupNumber": "1", - "Controls": [ - { - "Control ID": "GWS.GMAIL.1.1v0.2", - "Requirement": "Mail Delegation SHOULD be disabled.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - } - ... -``` - -## Navigation -- Return to [Documentation Home](/README.md) +# Troubleshooting + +## Not Authorized to Access This Resource + +If an authorization error similar to the one below appears: + +``` +RuntimeWarning: An exception was thrown trying to get the tenant data: + +``` +Ensure that you consented to the following API scopes as a user with the proper +[permissions to consent](../prerequisites/Prerequisites.md#permissions) and have +enabled the required [APIs and Services](../authentication/OAuth.md). + +## Windows: WinError 10013: Permission Error + +When ScubaGoggles is run and it needs to re-authorize you using your Google +credentials, it makes a connection using port 8080. If you receive a permission +error with the text `An attempt was made to access a socket in a way forbidden +by its access permissions`, it is likely that another process on your system is +using that port. + +The following PowerShell command, when run as an Adminstrator, may help to +locate the process using the port. Once you've determined how the port is +being used, you can evaluate whether something may be done to temporarily +relinquish the port for ScubaGoggles use or whether you might need to try +running ScubaGoggles on a system where the port is available. + +``` +Get-Process -Id (Get-NetTCPConnection -LocalPort 8080).OwningProcess +``` + +## Unable to view HTML report due to environment limitations + +If you are unable to view the HTML report in a browser window, the results of +the conformance scan can be viewed in their raw JSON format. + +We recommend running the conformance report in quiet mode to stop the web +browser from being opened automatically. This can be done with the `--quiet` +parameter: + +```scubagoggles gws --quiet``` + +Once the scan is complete, navigate to the output folder. Within the output +folder, you can access the generated HTML reports, or view the results in JSON +format. + +To view the results as JSON, open the `ScubaResults.json` file. + +The output will resemble the following: + +```json +{ + "Summary": { + "sites": { + "Manual": 0, + "Passes": 1, + "Errors": 0, + "Failures": 0, + "Warnings": 0, + "Omit": 0 + } + }, + "Results": { + "sites": [ + { + "GroupName": "Sites Service Status", + "GroupNumber": "1", + "GroupReferenceURL": "https://github.com/cisagov...", + "Controls": [ + { + "Control ID": "GWS.SITES.1.1", + "Requirement": "Sites Service SHOULD be disabled for all users.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + } + ] + } + ] + },... +``` + +## Navigation +- Return to [Documentation Home](/README.md) diff --git a/docs/upgrading/Upgrading.md b/docs/upgrading/Upgrading.md index 008ecb69..e594ee6d 100644 --- a/docs/upgrading/Upgrading.md +++ b/docs/upgrading/Upgrading.md @@ -1,22 +1,20 @@ -# Upgrading and Maintenance - -## Upgrading ScubaGoggles -Assuming you installed ScubaGoggles as described in [Download and Install](/docs/installation/DownloadAndInstall.md), upgrading to the lastest version of ScubaGoggles should be as simple as: -- Repeating the steps described in [Download and Install](/docs/installation/DownloadAndInstall.md) with the new release. -- Making the OPA executable available, by either: - - downloading the executable again as described in [Download the OPA executable](/docs/installation/OPA.md), - - copying the executable from the old release folder to the new release folder, or - - using the `--opapath` parameter to tell ScubaGoggles where to look for the executable. -- Making your credentials available, by either: - - copying your `credentials.json` file to the new release folder or - - using the `--credentials` parameter to tell ScubaGoggles where to look for your credentials. - -If instead you cloned the ScubaGoggles repo and wish to run ScubaGoggles on the latest code from main (only recommended for development purposes), be sure to run `python -m pip install .` inside the ScubaGoggles directory after pulling the latest code. - -## Upgrading OPA -While new versions of OPA are periodically released, it is only necessary to upgrade OPA if the version you have locally is unsupported. Running `python download_opa.py --help` lists the supported OPA versions. - -Upgrading OPA is as simple as downloading the desired executable, which can be done by running the `download_opa.py` script again. See [Download the OPA executable](/docs/installation/OPA.md) for detailed instructions. - -## Navigation -- Return to [Documentation Home](/README.md) \ No newline at end of file +# Upgrading and Maintenance + +## Upgrading ScubaGoggles + +To upgrade ScubaGoggles to a newer version, you simply download the latest +[release package](../installation/DownloadAndInstall.md#downloading-the-latest-scubagoggles-release), +and [install](../installation/DownloadAndInstall.md#installing-scubagoggles) +it using Python's `pip` utility. If you are using a Python virtual environment, make sure you have activated the virtual +environment before upgrading. + +## Upgrading OPA + +To upgrade the OPA executable, re-run the `scubagoggles getopa` +command, which will download the latest version to the directory +specified with `scubagoggles setup`. You may also download a +particular version of OPA using the `--version` option. See +[here](../installation/OPA.md) for details. + +## Navigation +- Return to [Documentation Home](/README.md) diff --git a/docs/usage/Config.md b/docs/usage/Config.md index 44b87fa1..5c068f96 100644 --- a/docs/usage/Config.md +++ b/docs/usage/Config.md @@ -1,39 +1,51 @@ - -# Usage: Config File -All ScubaGoggles [parameters](/docs/usage/Parameters.md) can be placed into a configuration file in order to made execution easier. The path of the file is specified by the `--config` parameter, and its contents are expected as YAML. - -> [!NOTE] -> If a parameter is specified both on the command-line and in a configuration file, the command-line parameter has precedence over the config file. - -## Sample Configuration Files -[Sample config files](/sample-config-files) are available in the repo and are discussed below. When executing ScubaGoggles, only a single config file can be read in; we recommend looking through the following examples and constructing a config file that best suits your use case. - -### Basic Usage -The [basic use](/sample-config-files/basic_config.yaml) example config file specifies the `outpath`, `baselines`, and `quiet` parameters. - -ScubaGoggles can be invoked with this config file: -``` -scubagoggles gws --config basic_config.yaml -``` - -It can also be invoked while overriding the `baselines` parameter. -``` -scubagoggles gws --config basic_config.yaml -b gmail chat -``` - -### Omit Policies - -In some cases, it may be appropriate to omit specific policies from ScubaGoggles evaluation. For example: -- When a policy is implemented by a third-party service that ScubaGoggles does not audit. -- When a policy is not applicable to your organization (e.g., policy GWS.GMAIL.4.3v0.3, which is only applicable to federal, executive branch, departments and agencies). - -The `omitpolicy` top-level key, shown in this [example ScubaGoggles configuration file](/sample-config-files/omit_policies.yaml), allows the user to specify the policies that should be omitted from the ScubaGoggles report. Omitted policies will show up as "Omitted" in the HTML report and will be colored gray. Omitting policies must only be done if the omissions are approved within an organization's security risk management process. **Exercise care when omitting policies because this can inadvertently introduce blind spots when assessing your system.** - -For each omitted policy, the config file allows you to indicate the following: -- `rationale`: The reason the policy should be omitted from the report. This value will be displayed in the "Details" column of the report. ScubaGoggles will output a warning if no rationale is provided. -- `expiration`: Optional. A date after which the policy should no longer be omitted from the report. The expected format is yyyy-mm-dd. - - -## Navigation -- Continue to [Usage: Examples](/docs/usage/Examples.md) -- Return to [Documentation Home](/README.md) + +# Usage: Config File +All ScubaGoggles [parameters](Parameters.md) can be placed into a configuration file in order to made execution easier. The path of the file is specified by the `--config` parameter, and its contents are expected as YAML. + +> [!NOTE] +> If a parameter is specified both on the command-line and in a configuration file, the command-line parameter has precedence over the config file. + +## Sample Configuration Files +[Sample config files](../../scubagoggles/sample-config-files) are available in the +repo and are discussed below. When executing ScubaGoggles, only a single config +file can be read in; we recommend looking through the following examples and +constructing a config file that best suits your use case. + +### Basic Usage + +The [basic use](../../scubagoggles/sample-config-files/basic_config.yaml) example +config file specifies the `outpath`, `baselines`, and `quiet` parameters. + +ScubaGoggles can be invoked with this config file: +``` +scubagoggles gws --config basic_config.yaml +``` + +It can also be invoked while overriding the `baselines` parameter. +``` +scubagoggles gws --config basic_config.yaml -b gmail chat +``` + +### Omit Policies + +In some cases, it may be appropriate to omit specific policies from ScubaGoggles evaluation. For example: +- When a policy is implemented by a third-party service that ScubaGoggles does not audit. +- When a policy is not applicable to your organization (e.g., policy GWS.GMAIL.4.3, which is only applicable to federal, executive branch, departments and agencies). + +The `omitpolicy` top-level key, shown in this [example ScubaGoggles +configuration file](../../scubagoggles/sample-config-files/omit_policies.yaml), +allows the user to specify the policies that should be omitted from the +ScubaGoggles report. Omitted policies will show up as "Omitted" in the HTML +report and will be colored gray. Omitting policies must only be done if the +omissions are approved within an organization's security risk management +process. **Exercise care when omitting policies because this can inadvertently +introduce blind spots when assessing your system.** + +For each omitted policy, the config file allows you to indicate the following: +- `rationale`: The reason the policy should be omitted from the report. This value will be displayed in the "Details" column of the report. ScubaGoggles will output a warning if no rationale is provided. +- `expiration`: Optional. A date after which the policy should no longer be omitted from the report. The expected format is yyyy-mm-dd. + + +## Navigation +- Continue to [Usage: Examples](Examples.md) +- Return to [Documentation Home](/README.md) diff --git a/docs/usage/Examples.md b/docs/usage/Examples.md index 9245a6bd..292c1b9c 100644 --- a/docs/usage/Examples.md +++ b/docs/usage/Examples.md @@ -1,49 +1,54 @@ - -# Usage: Examples -> [!Note] -> If you chose not install the `scubagoggles` package in a venv but do have the dependencies installed from `requirements.txt`, you may execute the tool using the `scuba.py` script located in the root directory of this repository. Replace any `scubagoggles` directions with `python scuba.py` - -## Example 1: Run an assessment against all GWS products -``` -scubagoggles gws -``` - -## Example 2: Run an assessment against just Gmail and Google Calendar -``` -scubagoggles gws -b gmail calendar -``` - -## Example 3: Run an assessment and store the results under a folder called output -``` -scubagoggles gws -b calendar gmail groups chat meet sites -o ./output -``` - -## Example 4: Do a run cached assessment -``` -# skip authentication and provider export stage -# used for running against a cached provider json - -scubagoggles gws --runcached --skipexport -``` - -## Example 5: Run with a service account on a different tenant -``` -scubagoggles gws --customerid --subjectemail admin@example.com -``` - -See the `help` options yourself -``` -scubagoggles gws -h -``` - -## Example 6: Run with a config file -``` -scubagoggles gws --config sample-config-files/basic_config.yaml -``` - -> [!NOTE] -> In all the above examples, the html report should open automatically. If not, navigate to the output folder and open the `*.html` file using a browser of your choice. The json output will also be located in this folder. - -## Navigation -- Continue to [Reviewing Output](/docs/usage/ReviewOutput.md) -- Return to [Documentation Home](/README.md) + +# Usage: Examples + +## Example 1: Run an assessment against all GWS products +``` +scubagoggles gws +``` + +## Example 2: Run an assessment against just Gmail and Google Calendar +``` +scubagoggles gws -b gmail calendar +``` + +## Example 3: Run an assessment and store the results under a folder called output +``` +scubagoggles gws -b calendar gmail groups chat meet sites -o ./output +``` + +## Example 4: Do a run cached assessment +``` +# skip authentication and provider export stage +# used for running against a cached provider json + +scubagoggles gws --runcached --skipexport +``` + +## Example 5: Run with a service account on a different tenant +``` +scubagoggles gws --customerid --subjectemail admin@example.com +``` + +See the `help` options yourself +``` +scubagoggles gws -h +``` + +## Example 6: Run with a config file +``` +scubagoggles gws --config sample-config-files/basic_config.yaml +``` + +> [!NOTE] +> In all the above examples, the html report should open automatically. If not, navigate to the output folder and open the `*.html` file using a browser of your choice. The json output will also be located in this folder. + +> [!NOTE] +> The following is intended for developers **ONLY**: +> If you chose not install the `scubagoggles` package in a venv but do have the +> dependencies installed from `requirements.txt`, you may execute the tool using +> the `scuba.py` script located in the root directory of this repository. +> Replace any `scubagoggles` directions with `python scuba.py` + +## Navigation +- Continue to [Reviewing Output](ReviewOutput.md) +- Return to [Documentation Home](/README.md) diff --git a/docs/usage/Limitations.md b/docs/usage/Limitations.md index 48f698cd..1cdcf694 100644 --- a/docs/usage/Limitations.md +++ b/docs/usage/Limitations.md @@ -1,11 +1,35 @@ -# Limitations - -The majority of the conformance checks done by ScubaGoggles rely on [GWS Admin log events](https://support.google.com/a/answer/4579579?hl=en). If there is no log event corresponding to a SCuBA baseline policy, ScubaGoggles will indicate that the setting currently can not be checked on its HTML report output. In this situation, we recommend you manually review your GWS security configurations with the SCuBA security baselines. - -Additionally, some events will not be visible due to data retention time limits, as the admin logs are only retained for 6 months (see [Data retention and lag times](https://support.google.com/a/answer/7061566)). However, if you wish to generate a log event for testing ScubaGoggles' capabilities, follow the implementation instructions in the [SCuBA GWS baseline documents](/baselines/README.md) to change your GWS configuration settings. Toggling certain settings, off and on will be enough to generate a log event. Other settings will require implementing more substantive configuration changes. - -Many controls can be scoped down to the organizaitonal unit (OU) or group level. ScubaGoggles is capable of checking settings applied at these levels. However, for any setting that can be scoped to specific OUs or groups, ScubaGoggles asserts that at least one event is present for the organization's top-level OU. If no event can be found for the top-level OU, ScubaGoggles will not display any results for that control and instead display a warning, such as the following: -![image](https://github.com/cisagov/ScubaGoggles/assets/106177711/e3bf7925-8c00-489d-8e79-262e861bd1a8) - -## Navigation -- Return to [Documentation Home](/README.md) +# Limitations + +While most of the conformance checks done by ScubaGoggles rely on Google's Policy +API that provides direct access to your GWS settings, some settings are not +available from this API. For a few comformance checks where the corresponding +settings are not provided by the Policy API, we try to determine the settings +using [GWS Admin log events](https://support.google.com/a/answer/4579579?hl=en). + +## Log Event Limitations + +For these cases, if there is no log event corresponding to a SCuBA baseline +policy, ScubaGoggles will indicate that the setting currently can not be checked +on its HTML report output. In this situation, we recommend you manually review +your GWS security configurations with the SCuBA secure baselines. + +Additionally, some events will not be visible due to data retention time limits, +as the admin logs are only retained for 6 months +(see [Data retention and lag times](https://support.google.com/a/answer/7061566)). +However, if you wish to generate a log event for testing ScubaGoggles' +capabilities, follow the implementation instructions in the +[SCuBA GWS baseline documents](../../scubagoggles/baselines/README.md) to change your GWS +configuration settings. Toggling certain settings, off and on will be enough to +generate a log event. Other settings will require implementing more substantive +configuration changes. + +Many controls can be scoped down to the organizational unit (OU) or group level. +ScubaGoggles is capable of checking settings applied at these levels. However, +for any setting that can be scoped to specific OUs or groups, ScubaGoggles +asserts that at least one event is present for the organization's top-level OU. +If no event can be found for the top-level OU, ScubaGoggles will not display +any results for that control and instead display a warning, such as the following: +![image](https://github.com/cisagov/ScubaGoggles/assets/106177711/e3bf7925-8c00-489d-8e79-262e861bd1a8) + +## Navigation +- Return to [Documentation Home](/README.md) diff --git a/docs/usage/Parameters.md b/docs/usage/Parameters.md index 01080669..f461ddbc 100644 --- a/docs/usage/Parameters.md +++ b/docs/usage/Parameters.md @@ -1,58 +1,75 @@ - -# Usage: Parameters -Execute the ScubaGoggles tool using the `scubagoggles` command. For GWS, all commands will be under the `gws` subparser. - -``` -scubagoggles gws -h -usage: scubagoggles gws [-h] [-b [...]] [-o] [-c] [--subjectemail] [--customerid] [--opapath] [--regopath] [--documentpath] - [--runcached] [--skipexport] [--outputfoldername] [--outputproviderfilename] - [--outputregofilename] [--outputreportfilename] [--omitsudo] [--quiet] [--debug] - -optional arguments: - -h, --help show this help message and exit - -b [ ...], --baselines [ ...] - A list of one or more abbreviated GWS baseline names that the tool will assess. Defaults to - all baselines. Choices: gmail, calendar, groups, chat, drive, meet, sites, commoncontrols, - rules, classroom - -o , --outputpath The folder path where both the output JSON & HTML report will be created. Defaults to "./" The - current directory. - -c , --credentials The relative path and name of the OAuth / service account credentials json file. Defaults to - "./credentials.json" which means the tool will look for the file named credentials.json in the - current directory. - --config Local file path to a YAML formatted configuration file. Configuration file parameters can be - used in place of command-line parameters. Additional parameters and variables not available - on the command line can also be included in the file that will be provided to the tool for - use in specific tests. - --outjsonfilename The name of the file that encapsulates all assessment output. Defaults to ScubaResults. - --subjectemail Only applicable when using a service account. The email address of a user the service account - should act on behalf of. This user must have the necessary privileges to run scubagoggles. - --customerid The customer ID the tool should run on. Defaults to "my_customer" which will be the domain of - the user / service account authenticating. - --opapath The relative path to the directory containing the OPA executable. Defaults to "./" the current - executing directory. - --regopath The relative path to the directory contain the folder containing the rego files. Defaults to - "./rego" the "rego" folder inside the current executing directory. - --documentpath The relative path to the directory containing the SCuBA baseline documents. Defaults to - "./baselines" the "baselines" folder inside the current executing directory. - --runcached This switch when added will run in the tool in "RunCached mode". When combined with -sa allows - to the user to skip authentication and provider export. - --skipexport This switch when added will skip the provider export.To be used in conjunction with - --runcached. - --outputfoldername The name of the folder created in --outputpath where both the output JSON and the HTML report - will be created. Defaults to GWSBaselineConformance. The client's local timestamp will be - appended to this name. - --outputproviderfilename - The name of the Provider output json in --outputpath. Defaults to ProviderSettingsExport. - --outputregofilename - The name of the Rego output json in --outputpath. Defaults to TestResults. - --outputreportfilename - The name of the main html file homepage created in --outputpath. Defaults to BaselineReports. - --omitsudo This switch prevents running the OPA executable with sudo. - --quiet This switch suppresses automatically launching a web browser to open the html report output - and the loading bar output. - --debug This switch is used to print debugging information for OPA. -``` - -## Navigation -- Continue to [Usage: Config File](/docs/usage/Config.md) -- Return to [Documentation Home](/README.md) + +# Usage: Parameters +Execute the ScubaGoggles tool using the `scubagoggles` command. For GWS, +all commands will be under the `gws` "subcommand". + +``` +usage: scubagoggles gws [-h] + [--baselines [ ...]] + [--outputpath ] + [--outjsonfilename ] + [--credentials ] + [--config ] + [--subjectemail ] + [--customerid ] + [--opapath ] + [--regopath ] + [--documentpath ] + [--outputfoldername ] + [--outputproviderfilename ] + [--outputregofilename ] + [--outputreportfilename] + [--quiet] + [--debug] + [--runcached] + [--skipexport] + +SCuBA automated conformance check for Google Workspace (GWS) products + +options: + -h, --help show this help message and exit + --baselines [ ...], -b [ ...] + A list of one or more abbreviated GWS baseline names that the tool will assess. Defaults to all baselines. Choices: calendar, chat, + classroom, commoncontrols, drive, gmail, groups, meet, rules, sites + --outputpath , -o + The folder path where both the output JSON & HTML report will be created. + --outjsonfilename + The name of the file that encapsulates all assessment output. Defaults to ScubaResults. + --credentials , -c + The location and name of the OAuth / service account credentials json file. + --config + Local file path to a YAML formatted configuration file. Configuration file parameters can be used in place of command-line + parameters. Additional parameters and variables not available on the command line can also be included in the file that will be + provided to the tool for use in specific tests. + --subjectemail + Only applicable when using a service account. The email address of a user the service account should act on behalf of. This user + must have the necessary privileges to run scubagoggles. + --customerid + The customer ID the tool should run on. Defaults to "my_customer" which will be the domain of the user / service account + authenticating. + --opapath + The directory containing the OPA executable. + --regopath + The relative path to the directory contain the folder containing the rego files. + --documentpath + The relative path to the directory containing the SCuBA baseline documents. + --outputfoldername + The name of the folder created in --outputpath where both the output JSON and the HTML report will be created. Defaults to GWSBaselineConformance. The client's local timestamp will be appended to this name. + --outputproviderfilename + The name of the Provider output json in --outputpath. Defaults to ProviderSettingsExport. + --outputregofilename + The name of the Rego output json in --outputpath. Defaults to TestResults. + --outputreportfilename + The name of the main html file homepage created in --outputpath. Defaults to BaselineReports. + --quiet This switch suppresses automatically launching a web browser to open the html report output and the loading bar output. + --debug This switch is used to print debugging information for OPA. + +Cached Mode options: + --runcached This switch when added will run in the tool in "RunCached mode". When combined with --skipexport allows the user to skip + authentication and provider export. + --skipexport This switch when added will skip the provider export. To be used in conjunction with --runcached. +``` + +## Navigation +- Continue to [Usage: Examples](Examples.md) +- Return to [Documentation Home](/README.md) diff --git a/docs/usage/ReviewOutput.md b/docs/usage/ReviewOutput.md index bc61a51e..cb6ecdb0 100644 --- a/docs/usage/ReviewOutput.md +++ b/docs/usage/ReviewOutput.md @@ -1,14 +1,43 @@ -# Review Output -## Locating the Output -By default, ScubaGoggles output will be saved in a folder within the current working directory named GWSBaselineConformance_[yyyy_mm_dd_hh_mm_ss], though both the location of the output and name of the folder can be configured via the `--outputpath` and `--outputfoldername` parameters, respectively. - -Unless run with the `--quiet` parameter, the HTML report will open automatically using the system's default browser. - -See [Usage: Parameters](/docs/usage/Parameters.md) for more details on these and other parameters. - -## Output Format -The output will be saved in both HTML and json formats. See [Sample Report](/sample-report) for an example of the output. - -## Navigation -- Continue to [Limitations](/docs/usage/Limitations.md) -- Return to [Documentation Home](/README.md) +# Review Output +## Locating the Output + +ScubaGoggles conformance reports are written to the output +directory you established during the [setup](../installation/DownloadAndInstall.md#scubagoggles-setup-utility) installation +step. For each `scubagoggles gws` run, a subdirectory is +created, which is named in the following format: +`GWSBaselineConformance_yyyy_mm_dd_hh_mm_ss`, the suffix +of which is based on the date & time the report was +generated: + +| Abbreviation | Description | +|-------------|---------------------------------------------------| +| yyyy | Four digit year (e.g., 2025). | +| mm | Two digit month. | +| dd | Two digit day. | +| hh | Two digit hour (24-hour time). | +| mm | Two digit minute. | +| ss | Two digit seconds. | + +Unless run with the `--quiet` parameter, the HTML report will open automatically using the system's default browser. + +See [Usage: Parameters](Parameters.md) for more details on these and other parameters. + +## Output Format +The output will be saved in both HTML and json formats. See [Sample Report](../../scubagoggles/sample-report) for an example of the output. + +## Purging Older Report Directories + +Each time you run ScubaGoggles, a directory (folder) is created that contains +the conformance report files. If you run ScubaGoggles often, these directories +will accumulate. When you use the default output directory and directory name +prefix (`GWSBaselineConformance`), you may use the `scubagoggles purge` +command to remove older report directories. The `--expire` option deletes all +report directories created earlier than the number of days specified. The +`--keep` option ensures that the number of directories you specify will not be +deleted. When given together, the keep count takes precedence over the expiry +days. + + +## Navigation +- Continue to [Limitations](Limitations.md) +- Return to [Documentation Home](/README.md) diff --git a/drift-rules/GWS Drift Monitoring Rules - Calendar.csv b/drift-rules/GWS Drift Monitoring Rules - Calendar.csv index b9e002c3..97e33aff 100644 --- a/drift-rules/GWS Drift Monitoring Rules - Calendar.csv +++ b/drift-rules/GWS Drift Monitoring Rules - Calendar.csv @@ -4,4 +4,4 @@ GWS.CALENDAR.1.2v0.3,"External sharing options for secondary calendars SHALL be GWS.CALENDAR.2.1v0.3,External invitations warnings SHALL be enabled to prompt users before sending invitations.,Admin Log Event,Change Calendar Setting,ENABLE_EXTERNAL_GUEST_PROMPT,true,rules/00gjdgxs26jpj72,JK 07-28-23 @ 12:20 GWS.CALENDAR.3.1v0.3,Calendar Interop SHOULD be disabled unless agency mission fulfillment requires collaboration between users internal and external to an organization who use both Microsoft Exchange and Google Calendar.,Admin Log Event,Change Calendar Setting,ENABLE_EWS_INTEROP,false,rules/00gjdgxs3yipjmt,JK 07-28-23 @ 14:42 GWS.CALENDAR.3.2v0.3,OAuth 2.0 SHALL be used in lieu of basic authentication to establish connectivity between tenants or organizations in cases where Calendar Interop is deemed necessary for agency mission fulfillment.,N/A,N/A,N/A,N/A,N/A,"Not able to create rule due to bug in rule wizard. Applicable log event exists, but is not selectable within rule wizard." -GWS.CALENDAR.4.1v0.3,Appointment Schedule with Payments SHALL be disabled.,Admin Log Event,Change Application Setting,CalendarAppointmentSlotAdminSettingsProto payments_enabled,false,rules/00gjdgxs3oppjwl,JK 09-08-23 @ 10:47 \ No newline at end of file +GWS.CALENDAR.4.1v0.3,Appointment Schedule with Payments SHALL be disabled.,Admin Log Event,Change Application Setting,CalendarAppointmentSlotAdminSettingsProto payments_enabled,false,rules/00gjdgxs3oppjwl,JK 09-08-23 @ 10:47 diff --git a/drift-rules/GWS Drift Monitoring Rules - Chat.csv b/drift-rules/GWS Drift Monitoring Rules - Chat.csv index a6e24a5f..1e618121 100644 --- a/drift-rules/GWS Drift Monitoring Rules - Chat.csv +++ b/drift-rules/GWS Drift Monitoring Rules - Chat.csv @@ -5,7 +5,7 @@ GWS.CHAT.2.1v0.3,External file sharing SHALL be disabled to protect sensitive in GWS.CHAT.3.1v0.3,Space history SHOULD be enabled for traceability of information.,Admin Log Event,Change Application Setting,RoomOtrSettingsProto otr_state,"ALWAYS_ON_THE_RECORD OR DEFAULT_ON_THE_RECORD",rules/00gjdgxs13kc3ei,JK 08-01-23 @ 11:58 -GWS.CHAT.4.1v0.3(a),"External Chat messaging SHALL be restricted to allowlisted domains only.",Admin Log Event,Change Application Setting,RestrictChatProto restrictChatToOrganization,false,rules/00gjdgxs3vz76ij,JK 08-01-23 @ 13:17 +GWS.CHAT.4.1v0.3(a),External Chat messaging SHALL be restricted to allowlisted domains only.,Admin Log Event,Change Application Setting,RestrictChatProto restrictChatToOrganization,false,rules/00gjdgxs3vz76ij,JK 08-01-23 @ 13:17 GWS.CHAT.4.1v0.3(b),External Chat messaging SHALL be restricted to allowlisted domains only.,Admin Log Event,Change Application Setting,RestrictChatProto externalChatRestriction,TRUSTED_DOMAINS,rules/00gjdgxs3exvv2u,JK 08-01-23 @ 13:27 -GWS.CHAT.5.1v0.3,"Chat content reporting SHALL be enabled for all conversation types.",Admin Log Event,Create Application Setting,ContentReportingProto group_chat_reporting,CONTENT_REPORTING_STATE_ENABLED,N/A, MD @ 10-15-24 @ 16:47 -GWS.CHAT.5.2v0.3,"All reporting message categories SHOULD be selected.",N/A,N/A,N/A,N/A,N/A,Not Alertable due to no specfic log event \ No newline at end of file +GWS.CHAT.5.1v0.3,"Chat content reporting SHALL be enabled for all conversation types.",Admin Log Event,Create Application Setting,ContentReportingProto group_chat_reporting,CONTENT_REPORTING_STATE_ENABLED,N/A, MD @ 10-15-24 @ 16:47 +GWS.CHAT.5.2v0.3,"All reporting message categories SHOULD be selected.",N/A,N/A,N/A,N/A,N/A,Not Alertable due to no specfic log event diff --git a/drift-rules/GWS Drift Monitoring Rules - Classroom.csv b/drift-rules/GWS Drift Monitoring Rules - Classroom.csv index df38ff38..2209a040 100644 --- a/drift-rules/GWS Drift Monitoring Rules - Classroom.csv +++ b/drift-rules/GWS Drift Monitoring Rules - Classroom.csv @@ -4,4 +4,4 @@ GWS.CLASSROOM.1.2v0.3,Which classes can users in your domain join SHALL be set t GWS.CLASSROOM.2.1v0.3,Classroom API SHALL be disabled for users,Admin Log Events,Change Application Setting,ApiDataAccessSettingProto api_access_enabled,false,rules/00gjdgxs3aafl8p,JK 10-20-23 @ 13:31 GWS.CLASSROOM.3.1v0.3,Roster import with Clever SHOULD be turned off,Admin Log Events,Change Application Setting,RosterImportSettingsProto sis_integrator,SIS_INTEGRATOR_NONE,rules/00gjdgxs25t0l8g,JK 10-20-23 @ 13:42 GWS.CLASSROOM.4.1v0.3,Who can unenroll students from classes SHALL be set to Teachers Only,Admin Log Events,Change Application Setting,StudentUnenrollmentSettingsProto who_can_unenroll_students,ONLY_TEACHERS_CAN_UNENROLL_STUDENTS,rules/00gjdgxs44rgreu,JK 10-20-23 @ 13:50 -GWS.CLASSROOM.5.1v0.3,Class creation SHALL be restricted to verified teachers only.,Admin Log Events,Change Application Setting,TeacherPermissionsSettingProto who_can_create_class,rules/00gjdgxs4cfwumr,JK 06-21-24 @ 11:58 \ No newline at end of file +GWS.CLASSROOM.5.1v0.3,Class creation SHALL be restricted to verified teachers only.,Admin Log Events,Change Application Setting,TeacherPermissionsSettingProto who_can_create_class,rules/00gjdgxs4cfwumr,JK 06-21-24 @ 11:58, diff --git a/drift-rules/GWS Drift Monitoring Rules - Common Controls as of 11-14-23.csv b/drift-rules/GWS Drift Monitoring Rules - Common Controls as of 11-14-23.csv index 500fb662..24571997 100644 --- a/drift-rules/GWS Drift Monitoring Rules - Common Controls as of 11-14-23.csv +++ b/drift-rules/GWS Drift Monitoring Rules - Common Controls as of 11-14-23.csv @@ -39,7 +39,7 @@ GWS.COMMONCONTROLS.15.3v0.3,"The supplemental data storage region SHALL NOT be s GWS.COMMONCONTROLS.16.1v0.3,"Service status for Google services that do not have an individual control SHOULD be set to OFF for everyone.",Admin Log Event,Toggle Service Enabled,DISABLE_UNLISTED_SERVICES, true, N/A, MD 09-12-2024 @ 11:12 GWS.COMMONCONTROLS.16.2v0.3,"Early Access Apps Service Status SHOULD be set to OFF for everyone.", Admin Log Event,Toggle Service Enabled,Early Access Apps, false, N/A, MD 09-12-2024 @ 11:16 GWS.COMMONCONTROLS.17.1v0.3,"Require multi party approval for sensitive admin actions SHALL be enabled.", Admin Log Event, Change Application Setting, Multi Party Approval (MPA) Control Multi Party Approval Control, enabled, N/A, MD 09-12-2024 @ 11:20 -GWS.COMMONCONTROLS.18.1v0.3,"A custom policy SHALL be configured for Google Drive to protect PII and sensitive information, as defined by the agency. At a minimum, credit card numbers, U.S. Individual Taxpayer Identification Numbers (ITIN), and U.S. Social Security numbers (SSN) SHALL be blocked.",N/A,N/A,N/A,N/A,N/A,Not Alertable due to no specfic log event +GWS.COMMONCONTROLS.18.1v0.3,"A custom policy SHALL be configured for Google Drive to protect PII and sensitive information, as defined by the agency. At a minimum, credit card numbers, U.S. Individual Taxpayer Identification Numbers (ITIN), and U.S. Social Security numbers (SSN) SHALL be blocked.",N/A,N/A,N/A,N/A,N/A,Not Alertable due to no specfic log event GWS.COMMONCONTROLS.18.2v0.3,"A custom policy SHALL be configured for Google Chat to protect PII and sensitive information, as defined by the agency. At a minimum, credit card numbers, U.S. Individual Taxpayer Identification Numbers (ITIN), and U.S. Social Security numbers (SSN) SHALL be blocked.",N/A,N/A,N/A,N/A,N/A,Not Alertable due to no specfic log event GWS.COMMONCONTROLS.18.3v0.3,"A custom policy SHALL be configured for Gmail to protect PII and sensitive information, as defined by the agency. At a minimum, credit card numbers, U.S. Individual Taxpayer Identification Numbers (ITIN), and U.S. Social Security numbers (SSN) SHALL be blocked.",N/A,N/A,N/A,N/A,N/A,Not Alertable due to no specfic log event -GWS.COMMONCONTROLS.18.4v0.3,"The action for the custom DLP policy SHOULD be set to block external sharing.",N/A,N/A,N/A,N/A,N/A,Not Alertable due to no specfic log event \ No newline at end of file +GWS.COMMONCONTROLS.18.4v0.3,"The action for the custom DLP policy SHOULD be set to block external sharing.",N/A,N/A,N/A,N/A,N/A,Not Alertable due to no specfic log event diff --git a/drift-rules/GWS Drift Monitoring Rules - Gmail.csv b/drift-rules/GWS Drift Monitoring Rules - Gmail.csv index 4ba35b5b..c6c95700 100644 --- a/drift-rules/GWS Drift Monitoring Rules - Gmail.csv +++ b/drift-rules/GWS Drift Monitoring Rules - Gmail.csv @@ -50,6 +50,6 @@ GWS.GMAIL.17.1v0.3,Comprehensive mail storage SHOULD be enabled to ensure inform GWS.GMAIL.18.1v0.3,Content filtering SHOULD be enabled within Gmail messages.,N/A,N/A,N/A,N/A,N/A,Not Alertable GWS.GMAIL.18.2v0.3,Any third-party or outside application selected for advanced email content filtering SHOULD offer services comparable to those offered by Google Workspace.,N/A,N/A,N/A,N/A,N/A,Not Alertable GWS.GMAIL.18.3v0.3,"Gmail or third-party applications SHALL be configured to protect PII and sensitive information as defined by the agency. At a minimum, credit card numbers, taxpayer Identification Numbers (TIN), and Social Security Numbers (SSN) SHALL be blocked.",N/A,N/A,N/A,N/A,N/A,Not Alertable -GWS.GMAIL.19.1v0.3,"Domains SHALL NOT be added to lists that bypass spam filters.",Admin Log Event,Change Gmail Setting,SPAM_CONTROL,N/A,rules/00gjdgxs12jr6zt,JGK 04-11-24 @ 09:45 -GWS.GMAIL.19.2v0.3,"Domains SHALL NOT be added to lists that bypass spam filters and hide warnings.",Admin Log Event,Change Gmail Setting,SPAM_CONTROL,N/A,rules/00gjdgxs12jr6zt,JGK 04-11-24 @ 09:45 -GWS.GMAIL.19.3v0.3,"Bypass spam filters and hide warnings for all messages from internal and external senders SHALL NOT be enabled.",Admin Log Event,Change Gmail Setting,SPAM_CONTROL,N/A,rules/00gjdgxs12jr6zt,JGK 04-11-24 @ 09:45 +GWS.GMAIL.19.1v0.3,Domains SHALL NOT be added to lists that bypass spam filters.,Admin Log Event,Change Gmail Setting,SPAM_CONTROL,N/A,rules/00gjdgxs12jr6zt,JGK 04-11-24 @ 09:45 +GWS.GMAIL.19.2v0.3,Domains SHALL NOT be added to lists that bypass spam filters and hide warnings.,Admin Log Event,Change Gmail Setting,SPAM_CONTROL,N/A,rules/00gjdgxs12jr6zt,JGK 04-11-24 @ 09:45 +GWS.GMAIL.19.3v0.3,Bypass spam filters and hide warnings for all messages from internal and external senders SHALL NOT be enabled.,Admin Log Event,Change Gmail Setting,SPAM_CONTROL,N/A,rules/00gjdgxs12jr6zt,JGK 04-11-24 @ 09:45 diff --git a/drift-rules/GWS Drift Monitoring Rules - Groups.csv b/drift-rules/GWS Drift Monitoring Rules - Groups.csv index 5b24586f..e7bcdf17 100644 --- a/drift-rules/GWS Drift Monitoring Rules - Groups.csv +++ b/drift-rules/GWS Drift Monitoring Rules - Groups.csv @@ -4,4 +4,4 @@ GWS.GROUPS.2.1v0.3,Group owners’ ability to add external members to groups SHO GWS.GROUPS.3.1v0.3,"Group owners’ ability to allow posting to a group by an external, non-group member SHOULD be disabled unless necessary for agency mission fulfillment.",Admin Log Event,Change Application Setting,GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public,false,rules/00gjdgxs0lw54bd,JK 08-01-23 @ 14:52 GWS.GROUPS.4.1v0.3,Group creation SHOULD be restricted to admins within the organization unless necessary for agency mission fulfillment.,Admin Log Event,Change Application Setting,GroupsSharingSettingsProto who_can_create_groups,ADMIN_ONLY,rules/00gjdgxs35vsmz6,JK 08-01-23 @ 15:06 GWS.GROUPS.5.1v0.3,The default permission to view conversations SHALL be set to All Group Members.,Admin Log Event,Change Application Setting,GroupsSharingSettingsProto default_view_topics_access_level,MEMBERS,rules/00gjdgxs24dq6r2,JK 08-01-23 @ 15:14 -GWS.GROUPS.6.1v0.3,Group owners’ ability to hide groups from the directory SHOULD be disabled unless necessary for agency mission fulfillment.,Admin Log Event,Change Application Setting,GroupsSharingSettingsProto allow_unlisted_groups,false,rules/00gjdgxs0zbb0ae,JK 08-01-23 @ 15:22 \ No newline at end of file +GWS.GROUPS.6.1v0.3,Group owners’ ability to hide groups from the directory SHOULD be disabled unless necessary for agency mission fulfillment.,Admin Log Event,Change Application Setting,GroupsSharingSettingsProto allow_unlisted_groups,false,rules/00gjdgxs0zbb0ae,JK 08-01-23 @ 15:22 diff --git a/drift-rules/GWS Drift Monitoring Rules - Meet.csv b/drift-rules/GWS Drift Monitoring Rules - Meet.csv index 13632771..9e7630fd 100644 --- a/drift-rules/GWS Drift Monitoring Rules - Meet.csv +++ b/drift-rules/GWS Drift Monitoring Rules - Meet.csv @@ -3,4 +3,4 @@ GWS.MEET.1.1v0.3,Meeting access SHALL be restricted to users signed in with a Go GWS.MEET.2.1v0.3,Meeting access SHALL be disabled for meetings created by users who are not members of any Google Workspace tenant or organization.,Admin Log Event,Change Application Setting,SafetyAccessLockProto meetings_allowed_to_join,WORKSPACE_DOMAINS,rules/00gjdgxs0rw9s95,JK 08-02-23 @ 16:02 GWS.MEET.3.1v0.3,Host Management meeting features SHALL be enabled so that they are available by default when a host starts their meeting.,Admin Log Event,Change Application Setting,SafetyModerationLockProto host_management_enabled,true,rules/00gjdgxs3bvxawy,JK 08-02-23 @ 16:05 GWS.MEET.4.1v0.3,Warn for external participants SHALL be enabled.,Admin Log Event,Change Application Setting,Warn for external participants External or unidentified participants in a meeting are given a label,true,rules/00gjdgxs2yp7uet,JK 10-16-23 @ 07:32 -GWS.MEET.5.1v0.3,Users receive calls only from contacts and other users in the organization SHALL be selected.,Admin Log Event,Change Application Setting,Incoming call restrictions Allowed caller type,CONTACTS_AND_SAME_DOMAIN,rules/00gjdgxs188dve6,MD 06-11-24 @ 12:30 \ No newline at end of file +GWS.MEET.5.1v0.3,Users receive calls only from contacts and other users in the organization SHALL be selected.,Admin Log Event,Change Application Setting,Incoming call restrictions Allowed caller type,CONTACTS_AND_SAME_DOMAIN,rules/00gjdgxs188dve6,MD 06-11-24 @ 12:30 diff --git a/drift-rules/GWS Drift Monitoring Rules - Sites.csv b/drift-rules/GWS Drift Monitoring Rules - Sites.csv index e0c56726..f3375a46 100644 --- a/drift-rules/GWS Drift Monitoring Rules - Sites.csv +++ b/drift-rules/GWS Drift Monitoring Rules - Sites.csv @@ -1,2 +1,2 @@ PolicyId,Name,Data Source,Event (Is),Setting Name (Is),New Value (Is Not),Rule ID,Last Successful Test -GWS.SITES.1.1v0.3,Sites Service SHOULD be disabled for all users.,Admin Log Event,Toggle Service Enabled,No Setting Name,FALSE,rules/00gjdgxs3gdgxe3,JK 07-28-23 @ 11:12 \ No newline at end of file +GWS.SITES.1.1v0.3,Sites Service SHOULD be disabled for all users.,Admin Log Event,Toggle Service Enabled,No Setting Name,FALSE,rules/00gjdgxs3gdgxe3,JK 07-28-23 @ 11:12 diff --git a/docs/images/scubagoggles_branching_structure.svg b/images/scubagoggles_branching_structure.svg similarity index 100% rename from docs/images/scubagoggles_branching_structure.svg rename to images/scubagoggles_branching_structure.svg diff --git a/docs/images/scubagoggles_lifecycle.svg b/images/scubagoggles_lifecycle.svg similarity index 100% rename from docs/images/scubagoggles_lifecycle.svg rename to images/scubagoggles_lifecycle.svg diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..6fe1fe8e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,37 @@ +[build-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" + +[project] +name = "scubagoggles" +dynamic = ["version"] +classifiers = ["Development Status :: 4 - Beta", + "Intended Audience :: Information Technology", + "Topic :: Security", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13"] +dependencies = ["dnspython>=2.6.1", + "google-api-python-client>=2.142.0", + "google-auth-httplib2>=0.2.0", + "google-auth-oauthlib>=1.2.1", + "MarkupSafe>=2.1.5", + "pyyaml>=6.0.2", + "requests>=2.32.3", + "tqdm>=4.66.5"] +requires-python = ">= 3.9" +description='SCuBA security baseline assessment tool' +authors = [{name = "CISA"}] +license = {file = "LICENSE"} +readme = "README.md" + +[project.scripts] +scubagoggles = "scubagoggles.main:dive" + +[tool.setuptools.dynamic] +version = {attr = "scubagoggles.__version__"} + +[tool.setuptools.packages.find] +where = ["."] diff --git a/rego/Calendar.rego b/rego/Calendar.rego deleted file mode 100644 index f3761a54..00000000 --- a/rego/Calendar.rego +++ /dev/null @@ -1,302 +0,0 @@ -package calendar - -import data.utils -import future.keywords - -LogEvents := utils.GetEvents("calendar_logs") - -################## -# GWS.CALENDAR.1 # -################## - -# -# Baseline GWS.CALENDAR.1.1v0.3 -#-- -GetFriendlyValue1_1(Value) := "Share all information, but outsiders cannot change calendars" if { - Value == "READ_ONLY_ACCESS" -} else := "Share all information, and outsiders can change calendars" if { - Value == "READ_WRITE_ACCESS" -} else := "Share all information, and allow managing of calendars" if { - Value == "MANAGE_ACCESS" -} else := Value - -NonCompliantOUs1_1 contains { - "Name": OU, - "Value": concat(" ", [ - "External sharing options for primary calendars is set to", - GetFriendlyValue1_1(LastEvent.NewValue) - ]) -} if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "SHARING_OUTSIDE_DOMAIN", OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "SHOW_ONLY_FREE_BUSY_INFORMATION" - LastEvent.NewValue != "INHERIT_FROM_PARENT" -} - -NonCompliantGroups1_1 contains { - "Name": Group, - "Value": concat(" ", [ - "External sharing options for primary calendars is set to", - GetFriendlyValue1_1(LastEvent.NewValue) - ]) -} if { - some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, "SHARING_OUTSIDE_DOMAIN", Group) - # Ignore Group without any events - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "SHOW_ONLY_FREE_BUSY_INFORMATION" - LastEvent.NewValue != "INHERIT_FROM_PARENT" -} - -tests contains { - "PolicyId": "GWS.CALENDAR.1.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs.", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - Events := utils.FilterEventsOU(LogEvents, "SHARING_OUTSIDE_DOMAIN", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.CALENDAR.1.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs1_1, NonCompliantGroups1_1), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_1, "NonCompliantGroups": NonCompliantGroups1_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "SHARING_OUTSIDE_DOMAIN", utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs1_1) == 0, count(NonCompliantGroups1_1) == 0} - Status := (false in Conditions) == false -} -#-- - -# -# Baseline GWS.CALENDAR.1.2v0.3 -#-- - -GetFriendlyValue1_2(Value) := "Secondary Calendars Share all information, but outsiders cannot change calendars." if { - Value == "READ_ONLY_ACCESS" -} else := "Share all information, and outsiders can change calendars." if { - Value == "READ_WRITE_ACCESS" -} else := "Share all information, and allow managing of calendars." if { - Value == "MANAGE_ACCESS" -} else := "Only free/busy information (hide event details)." if { - Value == "SHOW_ONLY_FREE_BUSY_INFORMATION" -} else := Value - - -tests contains { - "PolicyId": "GWS.CALENDAR.1.2v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - Events := utils.FilterEventsNoOU(LogEvents, "SHARING_OUTSIDE_DOMAIN_FOR_SECONDARY_CALENDAR") - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.CALENDAR.1.2v0.3", - "Criticality": "Shall", - "ReportDetails": concat("",[utils.ReportDetailsBoolean(Status), "
Highest Level of Sharing: ", - GetFriendlyValue1_2(LastEvent.NewValue)]), - "ActualValue": {LastEvent.Setting: LastEvent.NewValue}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsNoOU(LogEvents, "SHARING_OUTSIDE_DOMAIN_FOR_SECONDARY_CALENDAR") - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - Status := LastEvent.NewValue == "SHOW_ONLY_FREE_BUSY_INFORMATION" -} -#-- - - -################## -# GWS.CALENDAR.2 # -################## - -# -# Baseline GWS.CALENDAR.2.1v0.3 -#-- - -NonCompliantOUs2_1 contains { - "Name": OU, - "Value": "External Sharing Guest Prompt is disabled." -} if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "ENABLE_EXTERNAL_GUEST_PROMPT", OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue == "false" -} - -NonCompliantGroups2_1 contains { - "Name": Group, - "Value": "External Sharing Guest Prompt is disabled." -} if { - some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, "ENABLE_EXTERNAL_GUEST_PROMPT", Group) - # Ignore groups without any events - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue == "false" -} - -tests contains { - "PolicyId": "GWS.CALENDAR.2.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - Events := utils.FilterEventsOU(LogEvents, "ENABLE_EXTERNAL_GUEST_PROMPT", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.CALENDAR.2.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs2_1, NonCompliantGroups2_1), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs2_1, "NonCompliantGroups": NonCompliantGroups2_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "ENABLE_EXTERNAL_GUEST_PROMPT", utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs2_1) == 0, count(NonCompliantGroups2_1) == 0} - Status := (false in Conditions) == false -} -#-- - - -################## -# GWS.CALENDAR.3 # -################## - -# -# Baseline GWS.CALENDAR.3.1v0.3 -#-- -tests contains { - "PolicyId": "GWS.CALENDAR.3.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - Events := utils.FilterEventsNoOU(LogEvents, "ENABLE_EWS_INTEROP") - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.CALENDAR.3.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.ReportDetailsBoolean(Status), - "ActualValue": {LastEvent.Setting: LastEvent.NewValue}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsNoOU(LogEvents, "ENABLE_EWS_INTEROP") - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - Status := LastEvent.NewValue == "false" -} -#-- - - -# -# Baseline GWS.CALENDAR.3.2v0.3 -#-- -tests contains { - "PolicyId": "GWS.CALENDAR.3.2v0.3", - "Criticality": "Shall/Not-Implemented", - "ReportDetails": "Currently not able to be tested automatically; please manually check.", - "ActualValue": "", - "RequirementMet": false, - "NoSuchEvent": true -} -#-- - - -################## -# GWS.CALENDAR.4 # -################## - -NonCompliantOUs4_1 contains { - "Name": OU, - "Value": "Paid calendar appointments are enabled." -} if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "CalendarAppointmentSlotAdminSettingsProto payments_enabled", OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue == "true" -} - -# -# Baseline GWS.CALENDAR.4.1v0.3 -#-- -tests contains { - "PolicyId": "GWS.CALENDAR.4.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs.", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - SettingName := "CalendarAppointmentSlotAdminSettingsProto payments_enabled" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.CALENDAR.4.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs4_1, []), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs4_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - SettingName := "CalendarAppointmentSlotAdminSettingsProto payments_enabled" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 - Status := count(NonCompliantOUs4_1) == 0 - -} -#-- diff --git a/rego/Classroom.rego b/rego/Classroom.rego deleted file mode 100644 index bba3712d..00000000 --- a/rego/Classroom.rego +++ /dev/null @@ -1,377 +0,0 @@ -package classroom - -import data.utils -import future.keywords - -LogEvents := utils.GetEvents("classroom_logs") - -################### -# GWS.CLASSROOM.1 # -################### - -# -# Baseline GWS.CLASSROOM.1.1v0.3 -#-- -GetFriendlyValue1_1(Value) := "Users in your domain only" if { - Value == "1" -} else := "Users in allowlisted domains" if { - Value == "2" -} else := "Any Google Workspace user" if { - Value == "3" -} else := "Any user" if { - Value == "4" -} else := Value - -NonCompliantOUs1_1 contains { - "Name": OU, - "Value": concat(" ", [ - "Who can join classes in your domain is set to", - GetFriendlyValue1_1(LastEvent.NewValue) - ]) -} if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "ClassMembershipSettingProto who_can_join_classes", OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "1" -} - -tests contains { - "PolicyId": "GWS.CLASSROOM.1.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - Events := utils.FilterEventsOU(LogEvents, "ClassMembershipSettingProto who_can_join_classes", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.CLASSROOM.1.1v0.3", - "Criticality": "Shall", - # Empty list is for noncompliant groups as classroom settings can't be modified at the group level - "ReportDetails": utils.ReportDetails(NonCompliantOUs1_1, []), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "ClassMembershipSettingProto who_can_join_classes", utils.TopLevelOU) - count(Events) > 0 - Status := count(NonCompliantOUs1_1) == 0 -} -#-- - -# -# Baseline GWS.CLASSROOM.1.2v0.3 -#-- -GetFriendlyValue1_2(Value) := "Classes in your domain only" if { - Value == "1" -} else := "Classes in allowlisted domains" if { - Value == "2" -} else := "Any Google Workspace class" if { - Value == "3" -} else := Value - -NonCompliantOUs1_2 contains { - "Name": OU, - "Value": concat(" ", [ - "Which classes can users in your domain join is set to", - GetFriendlyValue1_2(LastEvent.NewValue) - ]) -} if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "ClassMembershipSettingProto which_classes_can_users_join", OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "1" -} - -tests contains { - "PolicyId": "GWS.CLASSROOM.1.2v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - SettingName := "ClassMembershipSettingProto which_classes_can_users_join" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.CLASSROOM.1.2v0.3", - "Criticality": "Shall", - # Empty list is for noncompliant groups as classroom settings can't be modified at the group level - "ReportDetails": utils.ReportDetails(NonCompliantOUs1_2, []), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_2}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - SettingName := "ClassMembershipSettingProto which_classes_can_users_join" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 - Status := count(NonCompliantOUs1_2) == 0 -} -#-- - -################### -# GWS.CLASSROOM.2 # -################### - -# -# Baseline GWS.CLASSROOM.2.1v0.3 -#-- -GetFriendlyValue2_1(Value) := "OFF" if { - Value == "false" -} else := "ON" if { - Value == "true" -} else := Value - -NonCompliantOUs2_1 contains { - "Name": OU, - "Value": concat(" ", [ - "Data access is set to", - GetFriendlyValue2_1(LastEvent.NewValue) - ]) -} if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "ApiDataAccessSettingProto api_access_enabled", OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "false" - LastEvent.NewValue != "DELETE_APPLICATION_SETTING" -} - -tests contains { - "PolicyId": "GWS.CLASSROOM.2.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "ApiDataAccessSettingProto api_access_enabled", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.CLASSROOM.2.1v0.3", - "Criticality": "Shall", - # Empty list is for noncompliant groups as classroom settings can't be modified at the group level - "ReportDetails": utils.ReportDetails(NonCompliantOUs2_1, []), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs2_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "ApiDataAccessSettingProto api_access_enabled", utils.TopLevelOU) - count(Events) > 0 - Status := count(NonCompliantOUs2_1) == 0 -} -#-- - -################### -# GWS.CLASSROOM.3 # -################### - -# -# Baseline GWS.CLASSROOM.3.1v0.3 -#-- -GetFriendlyValue3_1(Value) := "OFF" if { - Value == "SIS_INTEGRATOR_NONE" -} else := "ON - CLEVER" if { - Value == "SIS_INTEGRATOR_CLEVER" -} else := Value - -NonCompliantOUs3_1 contains { - "Name": OU, - "Value": concat(" ", [ - "Roster import is set to", - GetFriendlyValue3_1(LastEvent.NewValue) - ]) -} if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "RosterImportSettingsProto sis_integrator", OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "SIS_INTEGRATOR_NONE" - LastEvent.NewValue != "DELETE_APPLICATION_SETTING" -} - -tests contains { - "PolicyId": "GWS.CLASSROOM.3.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - Events := utils.FilterEventsOU(LogEvents, "RosterImportSettingsProto sis_integrator", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.CLASSROOM.3.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.ReportDetails(NonCompliantOUs3_1, []), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs3_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "RosterImportSettingsProto sis_integrator", utils.TopLevelOU) - count(Events) > 0 - Status := count(NonCompliantOUs3_1) == 0 -} -#-- - -################### -# GWS.CLASSROOM.4 # -################### - -# -# Baseline GWS.CLASSROOM.4.1v0.3 -#-- -GetFriendlyValue4_1(Value) := "Students and teachers" if { - Value == "STUDENTS_AND_TEACHERS_CAN_UNENROLL_STUDENTS" -} else := "Only teachers" if { - Value == "ONLY_TEACHERS_CAN_UNENROLL_STUDENTS" -} else := Value - -NonCompliantOUs4_1 contains { - "Name": OU, - "Value": concat(" ", [ - "Who can unenroll students from classes is set to", - GetFriendlyValue4_1(LastEvent.NewValue) - ]) -} if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "StudentUnenrollmentSettingsProto who_can_unenroll_students", OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "ONLY_TEACHERS_CAN_UNENROLL_STUDENTS" - LastEvent.NewValue != "DELETE_APPLICATION_SETTING" -} - -tests contains { - "PolicyId": "GWS.CLASSROOM.4.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - SettingName := "StudentUnenrollmentSettingsProto who_can_unenroll_students" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.CLASSROOM.4.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs4_1, []), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs4_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - SettingName := "StudentUnenrollmentSettingsProto who_can_unenroll_students" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 - Status := count(NonCompliantOUs4_1) == 0 -} -#-- - - -################### -# GWS.CLASSROOM.5 # -################### - -# -# Baseline GWS.CLASSROOM.5.1v0.3 -#-- -GetFriendlyValue5_1(Value) := "anyone in this domain" if { - Value == "1" -} else := "all pending and verified teachers" if { - Value == "2" -} else := Value - -NonCompliantOUs5_1 contains { - "Name": OU, - "Value": concat(" ", [ - "Who can create classes is set to", - GetFriendlyValue5_1(LastEvent.NewValue) - ]) -} if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "TeacherPermissionsSettingProto who_can_create_class", OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "3" - LastEvent.NewValue != "DELETE_APPLICATION_SETTING" -} - -tests contains { - "PolicyId": "GWS.CLASSROOM.5.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - SettingName := "TeacherPermissionsSettingProto who_can_create_class" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.CLASSROOM.5.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs5_1, []), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - SettingName := "TeacherPermissionsSettingProto who_can_create_class" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 - Status := count(NonCompliantOUs5_1) == 0 -} -#-- - diff --git a/rego/Drive.rego b/rego/Drive.rego deleted file mode 100644 index a583d0d3..00000000 --- a/rego/Drive.rego +++ /dev/null @@ -1,1136 +0,0 @@ -package drive - -import data.utils -import future.keywords - -LogEvents := utils.GetEvents("drive_logs") - -################### -# GWS.DRIVEDOCS.1 # -################### - -# -# Baseline GWS.DRIVEDOCS.1.1v0.3 -#-- - -GetFriendlyValue1_1(Value) := concat("", - ["Files owned by users or shared drives ", - "can be shared with Google accounts in ", - "compatible allowlisted domains"]) if { - startswith(Value, "TRUSTED_DOMAINS") -} -else := concat("", ["Files owned by users or shared drives can ", - "be shared outside of the organization"]) if { - startswith(Value, "SHARING_ALLOWED") -} else := Value - -NonCompliantOUs1_1 contains { - "Name": OU, - "Value": GetFriendlyValue1_1(LastEvent.NewValue) - } if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "SHARING_OUTSIDE_DOMAIN", OU) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - AcceptableValues := {"SHARING_NOT_ALLOWED", "INHERIT_FROM_PARENT", - "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES"} - not LastEvent.NewValue in AcceptableValues -} - - -NonCompliantGroups1_1 contains { - "Name": Group, - "Value": GetFriendlyValue1_1(LastEvent.NewValue) - } if { - some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, "SHARING_OUTSIDE_DOMAIN", Group) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - AcceptableValues := {"SHARING_NOT_ALLOWED", "INHERIT_FROM_PARENT", - "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES"} - not LastEvent.NewValue in AcceptableValues -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "SHARING_OUTSIDE_DOMAIN", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.ReportDetails(NonCompliantOUs1_1, NonCompliantGroups1_1), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_1, "NonCompliantGroups": NonCompliantGroups1_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEvents(LogEvents, "SHARING_OUTSIDE_DOMAIN", utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs1_1) == 0, count(NonCompliantGroups1_1) == 0 } - Status := (false in Conditions) == false -} -#-- - -# -# Baseline GWS.DRIVEDOCS.1.2v0.3 -#-- - - -GetFriendlyValue1_2(Value) := "Users cannot recieve files outside the domain" if { - contains("SHARING_NOT_ALLOWED INHERIT_FROM_PARENT", Value) == true -} -else := "Users can recieve files outside the domain" - -NonCompliantOUs1_2 contains { - "Name": OU, - "Value": GetFriendlyValue1_2(LastEvent.NewValue) - } - if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "SHARING_OUTSIDE_DOMAIN", OU) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - AcceptableValues = {"SHARING_NOT_ALLOWED", "INHERIT_FROM_PARENT", - "TRUSTED_DOMAINS_ALLOWED", "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING"} - not LastEvent.NewValue in AcceptableValues -} - -NonCompliantGroups1_2 contains { - "Name": Group, - "Value": GetFriendlyValue1_2(LastEvent.NewValue) - } - if { - some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, "SHARING_OUTSIDE_DOMAIN", Group) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - AcceptableValues = {"SHARING_NOT_ALLOWED", "INHERIT_FROM_PARENT", - "TRUSTED_DOMAINS_ALLOWED", "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING"} - not LastEvent.NewValue in AcceptableValues - } - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.2v0.3", - "Criticality": "Should", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "SHARING_OUTSIDE_DOMAIN", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.2v0.3", - "Criticality": "Should", - "ReportDetails": utils.ReportDetails(NonCompliantOUs1_2, NonCompliantGroups1_2), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_2, - "NonCompliantGroups": NonCompliantGroups1_2}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "SHARING_OUTSIDE_DOMAIN", utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs1_2) == 0, count(NonCompliantGroups1_2) == 0 } - Status := (false in Conditions) == false -} -#-- - -# -# Baseline GWS.DRIVEDOCS.1.3v0.3 -#-- - -GetFriendlyValue1_3(Value, AcceptableValues) := "External Sharing Warning is Enabled" if { - Value in AcceptableValues == true -} -else := "External Sharing Warning is Disabled" - - -NonCompliantOUs1_3 contains { - "Name": OU, - "Value": GetFriendlyValue1_3(LastEvent.NewValue, AcceptableValues) - } if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "SHARING_OUTSIDE_DOMAIN", OU) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - AcceptableValues := {"SHARING_ALLOWED_WITH_WARNING", "SHARING_NOT_ALLOWED", - "INHERIT_FROM_PARENT", "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES", - "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING", - "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE"} - not LastEvent.NewValue in AcceptableValues -} - -NonCompliantGroups1_3 contains { - "Name": Group, - "Value": GetFriendlyValue1_3(LastEvent.NewValue, AcceptableValues) - } if { - some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, "SHARING_OUTSIDE_DOMAIN", Group) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - AcceptableValues := {"SHARING_ALLOWED_WITH_WARNING", "SHARING_NOT_ALLOWED", - "INHERIT_FROM_PARENT", "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES", - "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING", - "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE"} - not LastEvent.NewValue in AcceptableValues -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.3v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - Events := utils.FilterEventsOU(LogEvents, "SHARING_OUTSIDE_DOMAIN", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.3v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs1_3, NonCompliantGroups1_3), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_3, - "NonCompliantGroups": NonCompliantGroups1_3}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "SHARING_OUTSIDE_DOMAIN", utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs1_3) == 0, count(NonCompliantGroups1_3) == 0 } - Status := (false in Conditions) == false -} - -#-- - -# -# Baseline GWS.DRIVEDOCS.1.4v0.3 -#-- -NoSuchEvent1_4(TopLevelOU) := true if { - SettingName := "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - Events_A := utils.FilterEvents(LogEvents, SettingName, TopLevelOU) - count(Events_A) == 0 -} - -NoSuchEvent1_4(TopLevelOU) := true if { - SettingName := "SHARING_OUTSIDE_DOMAIN" - Events_B := utils.FilterEvents(LogEvents, SettingName, TopLevelOU) - count(Events_B) == 0 -} - -default NoSuchEvent1_4(_) := false - -GetFriendlyValue1_4(Value_A, Value_B, AcceptableValues_A, AcceptableValues_B) := -"External Sharing is Disabled" if { - Value_B in AcceptableValues_B -} else := concat("", ["External sharing is enabled ", - "but sharing items to non-google accounts is disabled"]) if { - Value_A in AcceptableValues_A -} else := "External sharing is enabled and items can be shared to non-google accounts" - -NonCompliantOUs1_4 contains { - "Name": OU, - "Value": GetFriendlyValue1_4(LastEvent_A.NewValue, - LastEvent_B.NewValue, AcceptableValues_A, AcceptableValues_B) - } if { - some OU in utils.OUsWithEvents - Events_A := utils.FilterEventsOU(LogEvents, "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS", OU) - count(Events_A) > 0 - LastEvent_A := utils.GetLastEvent(Events_A) - - Events_B := utils.FilterEventsOU(LogEvents, "SHARING_OUTSIDE_DOMAIN", OU) - count(Events_B) > 0 - LastEvent_B := utils.GetLastEvent(Events_B) - - AcceptableValues_A := {"NOT_ALLOWED", "INHERIT_FROM_PARENT"} - not LastEvent_A.NewValue in AcceptableValues_A - AcceptableValues_B := {"SHARING_NOT_ALLOWED", "INHERIT_FROM_PARENT"} - not LastEvent_B.NewValue in AcceptableValues_B -} - -NonCompliantGroups1_4 contains { - "Name": Group, - "Value": GetFriendlyValue1_4(LastEvent_A.NewValue, LastEvent_B.NewValue, - AcceptableValues_A, AcceptableValues_B) - } if { - some Group in utils.GroupsWithEvents - Events_A := utils.FilterEventsGroup(LogEvents, "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS", Group) - count(Events_A) > 0 - LastEvent_A := utils.GetLastEvent(Events_A) - - Events_B := utils.FilterEventsGroup(LogEvents, "SHARING_OUTSIDE_DOMAIN", Group) - count(Events_B) > 0 - LastEvent_B := utils.GetLastEvent(Events_B) - - AcceptableValues_A := {"NOT_ALLOWED", "INHERIT_FROM_PARENT"} - not LastEvent_A.NewValue in AcceptableValues_A - AcceptableValues_B := {"SHARING_NOT_ALLOWED", "INHERIT_FROM_PARENT"} - not LastEvent_B.NewValue in AcceptableValues_B -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.4v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - NoSuchEvent1_4(utils.TopLevelOU) -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.4v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs1_4, NonCompliantGroups1_4), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_4, - "NonCompliantGroups": NonCompliantGroups1_4}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - not NoSuchEvent1_4(utils.TopLevelOU) - Conditions := {count(NonCompliantOUs1_4) == 0, count(NonCompliantGroups1_4) == 0 } - Status := (false in Conditions) == false -} - -#-- - -# -# Baseline GWS.DRIVEDOCS.1.5v0.3 -#-- - -NonCompliantOUs1_5 contains { - "Name": OU, - "Value": "Published web content can be made visible to anyone with a link" - } if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "PUBLISHING_TO_WEB", OU) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - contains("ALLOWED", LastEvent.NewValue) == true -} - -NonCompliantGroups1_5 contains { - "Name": Group, - "Value": "Published web content can be made visible to anyone with a link" - } if { - some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, "PUBLISHING_TO_WEB", Group) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - contains("ALLOWED", LastEvent.NewValue) == true -} - - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.5v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "PUBLISHING_TO_WEB", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.5v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs1_5, NonCompliantGroups1_5), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_5, - "NonCompliantGroups": NonCompliantGroups1_5}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "PUBLISHING_TO_WEB", utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs1_5) == 0, count(NonCompliantGroups1_5) == 0 } - Status := (false in Conditions) == false -} -#-- - -# -# Baseline GWS.DRIVEDOCS.1.6v0.3 -#-- - -GetFriendlyValue1_6(Value) := -"Recipients only, suggested target audience, or public (no Google account required)" if { - Value == "ALL" -} else := "Recipients only, or suggested target audience" if { - Value == "DOMAIN_OR_NAMED_PARTIES" -} else := Value - -NonCompliantOUs1_6 contains { - "Name": OU, - "Value": concat("", ["Access Checker allows users to share files to ", - GetFriendlyValue1_6(LastEvent.NewValue)]) - } if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "SHARING_ACCESS_CHECKER_OPTIONS", OU) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - AcceptableValues := {"NAMED_PARTIES_ONLY", "INHERIT_FROM_PARENT"} - not LastEvent.NewValue in AcceptableValues -} - -NonCompliantGroups1_6 contains { - "Name":Group, - "Value": concat("", ["Access Checker allows users to share files to ", - GetFriendlyValue1_6(LastEvent.NewValue)]) - } if { - some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, "SHARING_ACCESS_CHECKER_OPTIONS", Group) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - AcceptableValues := {"NAMED_PARTIES_ONLY", "INHERIT_FROM_PARENT"} - not LastEvent.NewValue in AcceptableValues -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.6v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "SHARING_ACCESS_CHECKER_OPTIONS",utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.6v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs1_6, NonCompliantGroups1_6), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_6, - "NonCompliantGroups": NonCompliantGroups1_6}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "SHARING_ACCESS_CHECKER_OPTIONS", utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs1_6) == 0, count(NonCompliantGroups1_6) == 0 } - Status := (false in Conditions) == false -} -#-- - -# -# Baseline GWS.DRIVEDOCS.1.7v0.3 -#-- -GetFriendlyValue1_7(Value):= "Setting is compliant." if { - Value == "CROSS_DOMAIN_MOVES_BLOCKED" -} else := "Only users inside the organization can distribute content outside of the organization" if { - Value == "CROSS_DOMAIN_FROM_INTERNAL_ONLY" -} else := "Anyone can distribute content in the organization to outside the organization" if { - Value == "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" -} else := Value - -NonCompliantOUs1_7 contains { - "Name": OU, - "Value": GetFriendlyValue1_7(LastEvent.NewValue) - } if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS", OU) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - SettingValue := "CROSS_DOMAIN_MOVES_BLOCKED INHERIT_FROM_PARENT" - contains(SettingValue, LastEvent.NewValue) == false -} - -NonCompliantGroups1_7 contains { - "Name": Group, - "Value": GetFriendlyValue1_7(LastEvent.NewValue) - } if { - some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS", Group) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - SettingValue := "CROSS_DOMAIN_MOVES_BLOCKED INHERIT_FROM_PARENT" - contains(SettingValue, LastEvent.NewValue) == false -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.7v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.7v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs1_7, NonCompliantGroups1_7), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_7, "NonCompliantGroups": NonCompliantGroups1_7}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS", utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs1_7) == 0, count(NonCompliantGroups1_7) == 0 } - Status := (false in Conditions) == false -} -#-- - -# -# Baseline GWS.DRIVEDOCS.1.8v0.3 -#-- - -GetFriendlyValue1_8(Value):= "private to the owner." if { - Value == "PRIVATE" -} else := "The primary target audience can access the item if they have the link" if { - Value == "PEOPLE_WITH_LINK" -} else := "The primary target audience can search and find the item." if { - Value == "PUBLIC" -} else := Value - - -NonCompliantOUs1_8 contains { - "Name": OU, - "Value": concat("", ["When users create items, the default access is set to: ", - GetFriendlyValue1_8(LastEvent.NewValue)]) -} if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "DEFAULT_LINK_SHARING_FOR_NEW_DOCS", OU) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "PRIVATE" - LastEvent.NewValue != "INHERIT_FROM_PARENT" -} - - -NonCompliantGroups1_8 contains { - "Name": Group, - "Value": concat("", ["When users create items, the default access is set to: ", - GetFriendlyValue1_8(LastEvent.NewValue)]) -} if { - some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, "DEFAULT_LINK_SHARING_FOR_NEW_DOCS", Group) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "PRIVATE" - LastEvent.NewValue != "INHERIT_FROM_PARENT" -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.8v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - Events := utils.FilterEventsOU(LogEvents, "DEFAULT_LINK_SHARING_FOR_NEW_DOCS", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.1.8v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs1_8, NonCompliantGroups1_8), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_8, "NonCompliantGroups": NonCompliantGroups1_8}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "DEFAULT_LINK_SHARING_FOR_NEW_DOCS", utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs1_8) == 0, count(NonCompliantGroups1_8) == 0 } - Status := (false in Conditions) == false -} -#-- - -################### -# GWS.DRIVEDOCS.2 # -################### - -# -# Baseline GWS.DRIVEDOCS.2.1v0.3 -#-- -NonCompliantOUs2_1 contains { - "Name": OU, - "Value": "Members with manager access can override shared drive settings." - } if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "Shared Drive Creation new_team_drive_admin_only", OU) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - contains("true", LastEvent.NewValue) == false - LastEvent.NewValue != "DELETE_APPLICATION_SETTING" -} - -NonCompliantGroups2_1 contains { - "Name": Group, - "Value": "Members with manager access can override shared drive settings." - } if { - some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, "Shared Drive Creation new_team_drive_admin_only", Group) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - contains("true", LastEvent.NewValue) == false - LastEvent.NewValue != "DELETE_APPLICATION_SETTING" -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.2.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "Shared Drive Creation new_team_drive_admin_only", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.2.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.ReportDetails(NonCompliantOUs2_1, NonCompliantGroups2_1), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs2_1, "NonCompliantGroups": NonCompliantGroups2_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "Shared Drive Creation new_team_drive_admin_only", utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs2_1) == 0, count(NonCompliantGroups2_1) == 0 } - Status := (false in Conditions) == false -} -#-- - -# -# Baseline GWS.DRIVEDOCS.2.2v0.3 -#-- -NonCompliantOUs2_2 contains { - "Name": OU, - "Value": "Users outside the organization can access files in shared drives" - } if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, - "Shared Drive Creation new_team_drive_restricts_cross_domain_access", OU) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - contains("true", LastEvent.NewValue) == false - LastEvent.NewValue != "DELETE_APPLICATION_SETTING" -} - -NonCompliantGroups2_2 contains { - "Name": Group, - "Value": "Users outside the organization can access files in shared drives" - } if { - some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, - "Shared Drive Creation new_team_drive_restricts_cross_domain_access", Group) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - contains("true", LastEvent.NewValue) == false - LastEvent.NewValue != "DELETE_APPLICATION_SETTING" -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.2.2v0.3", - "Criticality": "Should", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - SettingName := "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.2.2v0.3", - "Criticality": "Should", - "ReportDetails": utils.ReportDetails(NonCompliantOUs2_2, NonCompliantGroups2_2), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs2_2, "NonCompliantGroups": NonCompliantGroups2_2}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - SettingName := "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs2_2) == 0, count(NonCompliantGroups2_2) == 0 } - Status := (false in Conditions) == false -} -#-- - -# -# Baseline GWS.DRIVEDOCS.2.3v0.3 -#-- -NonCompliantOUs2_3 contains { - "Name": OU, - "Value": "People who aren't shared drive members can be added to files" - } if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, - "Shared Drive Creation new_team_drive_restricts_direct_access", OU) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - contains("true", LastEvent.NewValue) == false - LastEvent.NewValue != "DELETE_APPLICATION_SETTING" -} -NonCompliantGroups2_3 contains { - "Name": Group, - "Value": "People who aren't shared drive members can be added to files" - } if { - some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, - "Shared Drive Creation new_team_drive_restricts_direct_access", Group) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - contains("true", LastEvent.NewValue) == false - LastEvent.NewValue != "DELETE_APPLICATION_SETTING" -} - - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.2.3v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - SettingName := "Shared Drive Creation new_team_drive_restricts_direct_access" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.2.3v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs2_3, NonCompliantGroups2_3), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs2_3, - "NonCompliantGroups": NonCompliantGroups2_3}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - SettingName := "Shared Drive Creation new_team_drive_restricts_direct_access" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs2_3) == 0, count(NonCompliantGroups2_3) == 0 } - Status := (false in Conditions) == false -} -#-- - -# -# Baseline GWS.DRIVEDOCS.2.4v0.3 -#-- -NonCompliantOUs2_4 contains { - "Name": OU, - "Value": "Viewers and commenters are allowed to download, print, and copy files" - } if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, - "Shared Drive Creation new_team_drive_restricts_download", OU) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - contains("false", LastEvent.NewValue) == true - LastEvent.NewValue != "DELETE_APPLICATION_SETTING" -} - -NonCompliantGroups2_4 contains { - "Name": Group, - "Value": "Viewers and commenters are allowed to download, print, and copy files" - } if { - some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, - "Shared Drive Creation new_team_drive_restricts_download", Group) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - contains("false", LastEvent.NewValue) == true - LastEvent.NewValue != "DELETE_APPLICATION_SETTING" -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.2.4v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - Events := utils.FilterEventsOU(LogEvents, - "Shared Drive Creation new_team_drive_restricts_download", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.2.4v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs2_4, NonCompliantGroups2_4), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs2_4, - "NonCompliantGroups": NonCompliantGroups2_4}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, - "Shared Drive Creation new_team_drive_restricts_download", utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs2_4) == 0, count(NonCompliantGroups2_4) == 0 } - Status := (false in Conditions) == false -} -#-- - - -################### -# GWS.DRIVEDOCS.3 # -################### - -# -# Baseline GWS.DRIVEDOCS.3.1v0.3 -#-- -NoSuchEvent3_1(TopLevelOU) := true if { - # No such event... - SettingName := "Link Security Update Settings allow_less_secure_link_user_restore" - Events_A := utils.FilterEventsOU(LogEvents, SettingName, TopLevelOU) - count(Events_A) == 0 -} - -NoSuchEvent3_1(TopLevelOU) := true if { - # No such event... - Events := utils.FilterEventsOU(LogEvents, - "Link Security Update Settings less_secure_link_option", TopLevelOU) - count(Events) == 0 -} - -default NoSuchEvent3_1(_) := false - -GetFriendlyValue3_1(Value_B, Value_A) := -"The security update is removed from all impacted files" if { - Value_B == "REQUIRE_LESS_SECURE_LINKS" -} -else := "Users are allowed to remove/apply the security update for files they own or manage" if { - Value_A == "true" -} -NonCompliantOUs3_1 contains { - "Name": OU, - "Value": GetFriendlyValue3_1(LastEvent_B.NewValue, LastEvent_A.NewValue) - } if { - some OU in utils.OUsWithEvents - Events_A := utils.FilterEventsOU(LogEvents, - "Link Security Update Settings allow_less_secure_link_user_restore", OU) - count(Events_A) > 0 - LastEvent_A := utils.GetLastEvent(Events_A) - - Events_B := utils.FilterEventsOU(LogEvents, - "Link Security Update Settings less_secure_link_option", OU) - count(Events_B) > 0 - LastEvent_B := utils.GetLastEvent(Events_B) - - true in { - LastEvent_A.NewValue != "false", - LastEvent_B.NewValue != "REMOVE_LESS_SECURE_LINKS" - } -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.3.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - NoSuchEvent3_1(utils.TopLevelOU) -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.3.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs3_1, []), - "ActualValue" : {"NonCompliantOUs": NonCompliantOUs3_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - not NoSuchEvent3_1(utils.TopLevelOU) - Status := count(NonCompliantOUs3_1) == 0 -} -#-- - -################### -# GWS.DRIVEDOCS.4 # -################### - -# -# Baseline GWS.DRIVEDOCS.4.1v0.3 -#-- -NonCompliantOUs4_1 contains { - "Name": OU, - "Value": "Drive SDK is enabled" -} -if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "ENABLE_DRIVE_APPS", OU) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "false" - LastEvent.NewValue != "INHERIT_FROM_PARENT" -} -NonCompliantGroups4_1 contains { - "Name": Group, - "Value": "Drive SDK is enabled" -} if { - some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, "ENABLE_DRIVE_APPS", Group) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "false" - LastEvent.NewValue != "INHERIT_FROM_PARENT" -} -tests contains { - "PolicyId": "GWS.DRIVEDOCS.4.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "ENABLE_DRIVE_APPS", utils.TopLevelOU) - count(Events) == 0 - -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.4.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.ReportDetails(NonCompliantOUs4_1, NonCompliantGroups4_1), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs4_1, "NonCompliantGroups": NonCompliantGroups4_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "ENABLE_DRIVE_APPS", utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs4_1) == 0, count(NonCompliantGroups4_1) == 0} - Status := (false in Conditions) == false -} - -#-- - - -################### -# GWS.DRIVEDOCS.5 # -################### - -# -# Baseline GWS.DRIVEDOCS.5.1v0.3 -#-- -NonCompliantOUs5_1 contains { - "Name": OU, - "Value": "Users can install Google Docs add-ons from add-ons store." - } if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "ENABLE_DOCS_ADD_ONS", OU) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "false" - LastEvent.NewValue != "INHERIT_FROM_PARENT" -} - -NonCompliantGroups5_1 contains { - "Name": Group, - "Value": "Users can install Google Docs add-ons from add-ons store." - } if { - some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, "ENABLE_DOCS_ADD_ONS", Group) - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "false" - LastEvent.NewValue != "INHERIT_FROM_PARENT" -} -tests contains { - "PolicyId": "GWS.DRIVEDOCS.5.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "ENABLE_DOCS_ADD_ONS", utils.TopLevelOU) - count(Events) == 0 - -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.5.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs5_1, NonCompliantGroups5_1), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_1, - "NonCompliantGroups": NonCompliantGroups5_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "ENABLE_DOCS_ADD_ONS", utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs5_1) == 0, count(NonCompliantGroups5_1) == 0 } - Status := (false in Conditions) == false -} -#-- - -################### -# GWS.DRIVEDOCS.6 # -################### - -# -# Baseline GWS.DRIVEDOCS.6.1v0.3 -#-- - -GetFriendlyValue6_1(CompanyOnly, DesktopEnabled) := - "Drive for Desktop is enabled and can be used on any device." if { - CompanyOnly == "false" - DesktopEnabled == "true" - } - else := "Drive for Desktop is disabled" if { - DesktopEnabled == "false" - } - else := "Drive for Desktop is enabled but only on approved devices." if { - CompanyOnly == "true" - DesktopEnabled == "true" - } - -default NoSuchEvent6_1(_) := true - -NoSuchEvent6_1(TopLevelOU) := false if { - Events := utils.FilterEventsOU(LogEvents, - "DriveFsSettingsProto drive_fs_enabled", TopLevelOU) - count(Events) != 0 -} - -NoSuchEvent6_1(TopLevelOU) := false if { - Events := utils.FilterEventsOU(LogEvents, - "DriveFsSettingsProto company_owned_only_enabled", TopLevelOU) - count(Events) != 0 -} - -NonCompliantOUs6_1 contains { - "Name": OU, - "Value": GetFriendlyValue6_1(LastCompanyOnlyEvent.NewValue, LastDriveEnabledEvent.NewValue) - } if { - some OU in utils.OUsWithEvents - - DriveEnabledEvents := utils.FilterEventsOU(LogEvents, - "DriveFsSettingsProto drive_fs_enabled", OU) - count(DriveEnabledEvents) > 0 - LastDriveEnabledEvent := utils.GetLastEvent(DriveEnabledEvents) - LastDriveEnabledEvent.NewValue != "DELETE_APPLICATION_SETTING" - - CompanyOnlyEvents := utils.FilterEventsOU(LogEvents, - "DriveFsSettingsProto company_owned_only_enabled", OU) - count(CompanyOnlyEvents) > 0 - LastCompanyOnlyEvent := utils.GetLastEvent(CompanyOnlyEvents) - LastCompanyOnlyEvent.NewValue != "DELETE_APPLICATION_SETTING" - - LastDriveEnabledEvent.NewValue == "true" - LastCompanyOnlyEvent.NewValue != "true" - } - -NonCompliantGroups6_1 contains { - "Name": Group, - "Value": GetFriendlyValue6_1(LastCompanyOnlyEvent.NewValue, LastDriveEnabledEvent.NewValue) - } if { - some Group in utils.GroupsWithEvents - - DriveEnabledEvents := utils.FilterEventsGroup(LogEvents, - "DriveFsSettingsProto drive_fs_enabled", Group) - count(DriveEnabledEvents) > 0 - LastDriveEnabledEvent := utils.GetLastEvent(DriveEnabledEvents) - LastDriveEnabledEvent.NewValue != "DELETE_APPLICATION_SETTING" - - CompanyOnlyEvents := utils.FilterEventsGroup(LogEvents, - "DriveFsSettingsProto company_owned_only_enabled", Group) - count(CompanyOnlyEvents) > 0 - LastCompanyOnlyEvent := utils.GetLastEvent(CompanyOnlyEvents) - LastCompanyOnlyEvent.NewValue != "DELETE_APPLICATION_SETTING" - - LastDriveEnabledEvent.NewValue == "true" - LastCompanyOnlyEvent.NewValue != "true" - } - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.6.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event for the top-level OU in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - NoSuchEvent6_1(utils.TopLevelOU) -} - -tests contains { - "PolicyId": "GWS.DRIVEDOCS.6.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.ReportDetails(NonCompliantOUs6_1, NonCompliantGroups6_1), - "ActualValue" : {"NonCompliantOUs": NonCompliantOUs6_1, "NonCompliantGroups": NonCompliantGroups6_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - not NoSuchEvent6_1(utils.TopLevelOU) - Conditions := {count(NonCompliantOUs6_1) == 0, count(NonCompliantGroups6_1) == 0} - Status := (false in Conditions) == false -} -#-- \ No newline at end of file diff --git a/rego/Groups.rego b/rego/Groups.rego deleted file mode 100644 index 3ad17ded..00000000 --- a/rego/Groups.rego +++ /dev/null @@ -1,378 +0,0 @@ -package groups - -import data.utils -import future.keywords - -LogEvents := utils.GetEvents("groups_logs") - -################ -# GWS.GROUPS.1 # -################ - -# -# Baseline GWS.GROUPS.1.1v0.3 -#-- - -GetFriendlyValue1_1(Value) := -"disabled" if { - Value == "CLOSED" -} else := "enabled" if { - Value == "OPEN" -} else := Value - -NonCompliantOUs1_1 contains { - "Name": OU, - "Value": concat("", ["Group access from outside the organization is ", - GetFriendlyValue1_1(LastEvent.NewValue)]) -} if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "GroupsSharingSettingsProto collaboration_policy", OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "CLOSED" -} - -tests contains { - "PolicyId": "GWS.GROUPS.1.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - Events := utils.FilterEventsOU(LogEvents, "GroupsSharingSettingsProto collaboration_policy", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.GROUPS.1.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs1_1, []), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "GroupsSharingSettingsProto collaboration_policy", utils.TopLevelOU) - count(Events) > 0 - Status := count(NonCompliantOUs1_1) == 0 -} -#-- - - -################ -# GWS.GROUPS.2 # -################ - -# -# Baseline GWS.GROUPS.2.1v0.3 -#-- - -GetFriendlyValue2_1(Value) := -"Group owners have the ability to add external members to the group" if { - Value != "false" -} else := concat("", ["Group owners do not have the ability to ", - "add external members to the group"]) if { - Value == "false" -} else := Value - -NonCompliantOUs2_1 contains { - "Name": OU, - "Value": GetFriendlyValue2_1(LastEvent.NewValue) -} if { - some OU in utils.OUsWithEvents - SettingName := "GroupsSharingSettingsProto owners_can_allow_external_members" - Events := utils.FilterEventsOU(LogEvents, SettingName, OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "false" -} - -tests contains { - "PolicyId": "GWS.GROUPS.2.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - SettingName := "GroupsSharingSettingsProto owners_can_allow_external_members" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.GROUPS.2.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.ReportDetails(NonCompliantOUs2_1, []), - "ActualValue": {"NonCompliantOUs":NonCompliantOUs2_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - SettingName := "GroupsSharingSettingsProto owners_can_allow_external_members" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 - Status := count(NonCompliantOUs2_1) == 0 -} -#-- - -################ -# GWS.GROUPS.3 # -################ - -# -# Baseline GWS.GROUPS.3.1v0.3 -#-- - -GetFriendlyValue3_1(Value) := concat("", ["Group owners have the ability to allow an ", - "external non-group member to post to the group"]) if { - Value == "true" -} else := concat("", ["Group owners do not have the ability to allow an ", - "external non-group member to post to the group"]) if { - Value == "false" -} else := Value - -NonCompliantOUs3_1 contains { - "Name": OU, - "Value": GetFriendlyValue3_1(LastEvent.NewValue) -} if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, - "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public", OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "false" -} - -tests contains { - "PolicyId": "GWS.GROUPS.3.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - SettingName := "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.GROUPS.3.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.ReportDetails(NonCompliantOUs3_1, []), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs3_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - SettingName := "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 - Status := count(NonCompliantOUs3_1) == 0 -} -#-- - - -################ -# GWS.GROUPS.4 # -################ - -# -# Baseline GWS.GROUPS.4.1v0.3 -#-- - -GetFriendlyValue4_1(Value) := -"Anyone in the organization can create groups" if { - Value == "USERS_IN_DOMAIN" -} else := "Anyone on the internet can create groups" if { - Value == "WORLD" -} else := Value - -NonCompliantOUs4_1 contains { - "Name": OU, - "Value": GetFriendlyValue4_1(LastEvent.NewValue) -} if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "GroupsSharingSettingsProto who_can_create_groups", OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "ADMIN_ONLY" -} - -tests contains { - "PolicyId": "GWS.GROUPS.4.1v0.3", - "Criticality": "Should", - "ReportDetails":utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "GroupsSharingSettingsProto who_can_create_groups", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.GROUPS.4.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.ReportDetails(NonCompliantOUs4_1, []), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs4_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "GroupsSharingSettingsProto who_can_create_groups", utils.TopLevelOU) - count(Events) > 0 - Status := count(NonCompliantOUs4_1) == 0 -} -#-- - - -################ -# GWS.GROUPS.5 # -################ - -# -# Baseline GWS.GROUPS.5.1v0.3 -#-- - -GetFriendlyValue5_1(Value) := "owners" - if { - Value == "OWNERS" -} else := "managers" if { - Value == "MANAGERS" -} else := "domain users" if { - Value == "DOMAIN_USERS" -} else := "anyone on the internet" if { - Value == "PUBLIC" -} else := Value - -NonCompliantOUs5_1 contains { - "Name": OU, - "Value": concat("", ["Permission to view conversations is set to ", GetFriendlyValue5_1(LastEvent.NewValue)]) - } if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "GroupsSharingSettingsProto default_view_topics_access_level", OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "MEMBERS" -} - -tests contains { - "PolicyId": "GWS.GROUPS.5.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue": "No relevant event in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := false - SettingName := "GroupsSharingSettingsProto default_view_topics_access_level" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.GROUPS.5.1v0.3", - "Criticality": "Should", - "ReportDetails": utils.ReportDetails(NonCompliantOUs5_1, []), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - SettingName := "GroupsSharingSettingsProto default_view_topics_access_level" - Events := utils.FilterEvents(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 - Status := count(NonCompliantOUs5_1) == 0 -} -#-- - - -################ -# GWS.GROUPS.6 # -################ - -# -# Baseline GWS.GROUPS.6.1v0.3 -#-- -CheckGroups6_1Compliance(Events, OUs) := true if { - Groups := utils.FilterEventsOU(Events, "GroupsSharingSettingsProto allow_unlisted_groups", utils.TopLevelOU) - count(Groups) > 0 - count(OUs) == 0 -} -else := false - -GetFriendlyValue6_1(Value) := "Groups can be hidden from the directory" if { - Value == "true" -} else := "Groups cannot be hidden from the directory" if { - Value == "false" -} else := Value - -NonCompliantOUs6_1 contains { - "Name": OU, - "Value": GetFriendlyValue6_1(LastEvent.NewValue) - } if { - some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "GroupsSharingSettingsProto allow_unlisted_groups", OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue != "false" -} - -tests contains { - "PolicyId": "GWS.GROUPS.6.1v0.3", - "Criticality": "Shall", - "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), - "ActualValue":"No relevant event in the current logs", - "RequirementMet": DefaultSafe, - "NoSuchEvent": true -} -if { - DefaultSafe := true - Events := utils.FilterEventsOU(LogEvents, "GroupsSharingSettingsProto allow_unlisted_groups", utils.TopLevelOU) - count(Events) == 0 -} - -tests contains { - "PolicyId": "GWS.GROUPS.6.1v0.3", - "Criticality": "Shall", - "ReportDetails":utils.ReportDetails(NonCompliantOUs6_1, []), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs6_1}, - "RequirementMet": Status, - "NoSuchEvent": false -} -if { - Events := utils.FilterEventsOU(LogEvents, "GroupsSharingSettingsProto allow_unlisted_groups", utils.TopLevelOU) - count(Events) > 0 - Status := count(NonCompliantOUs6_1) == 0 -} -#-- \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 721ead48..8c6fc23a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,9 +1,25 @@ -google-api-python-client==2.142.0 -google-auth-httplib2==0.2.0 -google-auth-oauthlib==1.2.1 -MarkupSafe==2.1.5 -dnspython==2.6.1 -pandas==2.2.0 -tqdm==4.66.5 -requests==2.32.3 -pyyaml==6.0.2 \ No newline at end of file +# This package is used for software development and is not needed by +# the Scubagoggles users: +build + +# There are many Python versions for users to install for ScubaGoggles, and +# because of this, it is too restrictive to limit versions of the dependent +# packages to an exact version (using ==). One package version might not be +# available in a version of Python, but a subsequent package version is +# and will work just fine. We have already run into user support issues +# because of this. By requiring a minimum version (using >=), we +# are requiring a version that we support and any subsequent version - this +# gives users much more flexibility in their Python environments. +# +# Any changes to this package dependency list MUST also be reflected in the +# pyproject.toml file. +# +# These packages are the minimum required versions for running Scubagoggles: +dnspython>=2.6.1 +google-api-python-client>=2.142.0 +google-auth-httplib2>=0.2.0 +google-auth-oauthlib>=1.2.1 +MarkupSafe>=2.1.5 +pyyaml>=6.0.2 +requests>=2.32.3 +tqdm>=4.66.5 diff --git a/scuba.py b/scuba.py index 0cc13df9..19bacfbb 100644 --- a/scuba.py +++ b/scuba.py @@ -6,18 +6,7 @@ package """ -# lets us import files from the scubagoggles folder -import sys -sys.path.insert(1, './scubagoggles') - -# However, pylint doesn't like this -from scubagoggles.main import dive # pylint: disable=import-error wrong-import-position - -def main(): - """ - SCuBA - """ - dive() +from scubagoggles.main import dive if __name__ == '__main__': - main() + dive() diff --git a/Testing/Functional/SmokeTests/README.md b/scubagoggles/Testing/Functional/SmokeTests/README.md similarity index 95% rename from Testing/Functional/SmokeTests/README.md rename to scubagoggles/Testing/Functional/SmokeTests/README.md index 268b6179..c1829a23 100644 --- a/Testing/Functional/SmokeTests/README.md +++ b/scubagoggles/Testing/Functional/SmokeTests/README.md @@ -15,10 +15,10 @@ This README outlines the ScubaGoggles software test automation structure and its - [Running Remotely via GitHub Actions](#running-remotely-via-github-actions) - [Adding New Tests](#adding-new-tests) -## Smoke Testing Prerequisites ## +## Smoke Testing Prerequisites ## Running the ScubaGoggles functional smoke tests requires a Windows, MacOS, or Linux computer or VM. The development environment should have Python v3.10.x installed at a minimum ([refer to our installing Python dependencies documentation if its not already installed](https://github.com/cisagov/ScubaGoggles/blob/main/docs/installation/DownloadAndInstall.md#installing-python-dependencies)), Pytest, and Selenium installed locally. -### Pytest and Selenium ### +### Pytest and Selenium ### Pytest is a Python testing framework which is commonly used for unit, integration, and functional testing. ([Pytest Get Started](https://docs.pytest.org/en/stable/getting-started.html)) Selenium supports automation of all the major browsers in the market through the use of WebDriver. ([Selenium Get Started](https://www.selenium.dev/documentation/webdriver/getting_started/)) @@ -42,27 +42,27 @@ Take note of the `subjectemail`, the email used to authenticate with GWS that ha ## Functional Smoke Testing Structure ## ScubaGoggles functional smoke testing has two main components: the smoke testing orchestrator and the automated workflow run via GitHub Actions. -### Smoke Testing Classes and Methods ### +### Smoke Testing Classes and Methods ### The smoke testing orchestrator ([/Testing/Functional/SmokeTests/smoke_test.py](https://github.com/cisagov/ScubaGoggles/blob/main/Testing/Functional/SmokeTests/smoke_test.py)) executes each test declared inside the `SmokeTest` class. The tests currently cover: - if the `scubagoggles gws` command generates valid output for all baselines - if ScubaResults.json contains API errors or exceptions -- if the generated baseline reports, i.e. BaselineReports.html, CalendarReport.html, ChatReport.html, etc., contain valid content and all links redirect accordingly +- if the generated baseline reports, i.e. BaselineReports.html, CalendarReport.html, ChatReport.html, etc., contain valid content and all links redirect accordingly The smoke testing utils ([/Testing/Functional/SmokeTests/smoke_test_utils.py](https://github.com/cisagov/ScubaGoggles/blob/main/Testing/Functional/SmokeTests/smoke_test_utils.py)) stores helper methods which perform various operations. The Selenium Browser class ([/Testing/Functional/SmokeTests/selenium_browser.py](https://github.com/cisagov/ScubaGoggles/blob/main/Testing/Functional/SmokeTests/selenium_browser.py)) encapsulates the setup, usage, and teardown of Selenium WebDriver instances. -The Pytest configuration methods ([/Testing/Functional/SmokeTests/conftest.py](https://github.com/cisagov/ScubaGoggles/blob/main/Testing/Functional/conftest.py)) declare various Pytest fixtures, allowing for the use of CLI arguments when invoking the Pytest command. +The Pytest configuration methods ([/Testing/Functional/SmokeTests/conftest.py](https://github.com/cisagov/ScubaGoggles/blob/main/Testing/Functional/conftest.py)) declare various Pytest fixtures, allowing for the use of CLI arguments when invoking the Pytest command. -### Automated Workflow via GitHub Actions ### +### Automated Workflow via GitHub Actions ### The automated workflow for running the functional smoke tests ([/.github/workflows/run_smoke_test.yml](https://github.com/cisagov/ScubaGoggles/blob/main/.github/workflows/run_smoke_test.yml)) is triggered on `push` events to the main branch, `pull_request` events when a pull request is opened/reopened/reviewed, and manually with custom user input via workflow_dispatch. -## Functional Smoke Testing Usage ## +## Functional Smoke Testing Usage ## After completing all of the prerequisite steps, the functional smoke tests can be run in a local development environment or remotely via GitHub Actions. -### Running in a Local Development Environment ### +### Running in a Local Development Environment ### > [!IMPORTANT] -> Ensure that you have correctly setup a Google service account and that the `credentials.json` stored at the root directory of the ScubaGoggles project is up to date. If you haven't already, please refer back to the [prerequisite step on Google Service Accounts](#google-service-account) for how to setup before proceeding. +> Ensure that you have correctly setup a Google service account and that the `credentials.json` stored at the root directory of the ScubaGoggles project is up to date. If you haven't already, please refer back to the [prerequisite step on Google Service Accounts](#google-service-account) for how to setup before proceeding. The following arguments are required when running the functional smoke tests: - `--subjectemail="user@domain.com"` (the email used to authenticate with GWS, must have necessary administrator permissions) @@ -90,8 +90,8 @@ Common Pytest parameters and their use cases: Run `pytest -h` for a full list of CLI options or [learn more about Pytest usage here.](https://docs.pytest.org/en/7.1.x/how-to/usage.html) -### Running Remotely via GitHub Actions ### -Go to the [run_smoke_test.yml workflow](https://github.com/cisagov/ScubaGoggles/actions/workflows/run_smoke_test.yml) in the GitHub Actions tab, then click the "Run workflow" dropdown button. +### Running Remotely via GitHub Actions ### +Go to the [run_smoke_test.yml workflow](https://github.com/cisagov/ScubaGoggles/actions/workflows/run_smoke_test.yml) in the GitHub Actions tab, then click the "Run workflow" dropdown button. The default values are the following: - ref branch: `main` but can be set to any branch @@ -107,8 +107,8 @@ Feel free to play around with the inputs then click the "Run workflow" button wh Some factors to consider: - Each input is required so an empty string will fail validation. `[]`, `['']`, `['', ]` may also cause the workflow to error out, although this is expected behavior. -- `ubuntu-latest` has not been tested as a value for operating system. Support can be added for this, although its dependent on if this is something we want to test for ScubaGoggles as a whole. -- Python versions <3.10.x are not supported and will cause the smoke test workflow to fail. +- `ubuntu-latest` has not been tested as a value for operating system. Support can be added for this, although its dependent on if this is something we want to test for ScubaGoggles as a whole. +- Python versions <3.10.x are not supported and will cause the smoke test workflow to fail. - [Due to the lack of an array input type from GitHub](https://github.com/orgs/community/discussions/11692), the required format is an array of strings for the operating system and python version inputs. This is something to capture as a future todo once arrays are available. ## Adding New Tests ## @@ -123,7 +123,7 @@ class SmokeTest: def test_scubagoggles_execution(self, subjectemail): """ Test if the `scubagoggles gws` command succeeds or fails. - + Args: subjectemail: The email address of an admin user who created the service account """ diff --git a/scubagoggles/Testing/Functional/SmokeTests/requirements.txt b/scubagoggles/Testing/Functional/SmokeTests/requirements.txt new file mode 100644 index 00000000..d48c27c1 --- /dev/null +++ b/scubagoggles/Testing/Functional/SmokeTests/requirements.txt @@ -0,0 +1,3 @@ +# These packages are only required for the functional smoke testing +pytest +selenium diff --git a/Testing/Functional/SmokeTests/selenium_browser.py b/scubagoggles/Testing/Functional/SmokeTests/selenium_browser.py similarity index 62% rename from Testing/Functional/SmokeTests/selenium_browser.py rename to scubagoggles/Testing/Functional/SmokeTests/selenium_browser.py index d3ffbc74..528ad086 100644 --- a/Testing/Functional/SmokeTests/selenium_browser.py +++ b/scubagoggles/Testing/Functional/SmokeTests/selenium_browser.py @@ -1,10 +1,11 @@ """ -selenium_browser.py declares a Browser class for use in ScubaGoggles testing. +selenium_browser.py declares a Browser class for use in ScubaGoggles testing. """ from selenium import webdriver from selenium.webdriver.chrome.options import Options + class Browser: """ The Browser class encapsulates the setup, usage, and teardown of a @@ -12,10 +13,10 @@ class Browser: """ def __init__(self): chrome_options = Options() - chrome_options.add_argument("--headless") - chrome_options.add_argument("--window-size=1200,800") - chrome_options.add_argument("--no-sandbox") - chrome_options.add_argument("--disable-dev-shm-usage") + chrome_options.add_argument('--headless') + chrome_options.add_argument('--window-size=1200,800') + chrome_options.add_argument('--no-sandbox') + chrome_options.add_argument('--disable-dev-shm-usage') self.driver = webdriver.Chrome(options=chrome_options) @@ -30,16 +31,16 @@ def get(self, url): def quit(self): """ - Quits the driver, closing every associated window. + Quits the driver, closing every associated window. """ self.driver.quit() def find_element(self, by, value): """ - Find the first WebElement using the given method. - This method is affected by the 'implicit wait' times in force at the time and execution. - The find_element(...) invocation will return a matching row, or try again repeatedly - until the configured timeout is reached. + Find the first WebElement using the given method. This method is + affected by the 'implicit wait' times in force at the time and + execution. The find_element(...) invocation will return a matching + row, or try again repeatedly until the configured timeout is reached. Args: by: The locating mechanism to use, i.e. By.CLASS_NAME, By.TAG_NAME @@ -52,23 +53,26 @@ def find_element(self, by, value): def find_elements(self, by, value): """ - Find all WebElements within the current page. - This method is affected by the 'implicit wait' times in force at the time and execution. - The find_elements(...) invocation will return as soon as there are more than 0 items in - the found collection, or will return an empty list of the timeout is reached. + Find all WebElements within the current page. This method is affected + by the 'implicit wait' times in force at the time and execution. The + find_elements(...) invocation will return as soon as there are more + than 0 items in the found collection, or will return an empty list of + the timeout is reached. Args: by: The locating mechanism to use, i.e. By.CLASS_NAME, By.TAG_NAME value: The locator, i.e. "h1", "header" Returns: - WebElement: A list of all matching WebElements, or an empty list if nothing matches + WebElement: A list of all matching WebElements, or an empty list + if nothing matches """ return self.driver.find_elements(by, value) def current_url(self): """ - Get a string representing the current URL that the browser is looking at. + Get a string representing the current URL that the browser is looking + at. Returns: The URL of the page currently loaded in the browser diff --git a/scubagoggles/Testing/Functional/SmokeTests/smoke_test.py b/scubagoggles/Testing/Functional/SmokeTests/smoke_test.py new file mode 100644 index 00000000..296d6f0a --- /dev/null +++ b/scubagoggles/Testing/Functional/SmokeTests/smoke_test.py @@ -0,0 +1,82 @@ +""" +smoke_test.py declares a SmokeTest class for ScubaGoggles automation testing. +""" + +import subprocess + +import pytest + +from smoke_test_utils import (get_output_path, + get_required_entries, + run_selenium, + sample_report_dir, + top_report_url, + verify_all_outputs_exist, + verify_output_type, + verify_scubaresults) + + +class SmokeTest: + """ + Pytest class to encapsulate the following test cases: + + - Generate the correct output files (BaselineReports.html, + ScubaResults.json, etc) + - Check the content of html files, verify href attributes are + correct, etc + - Check if ScubaResults.json contains errors in the summary. If errors + exist, then either API calls or functions produced exceptions which + need to be handled + """ + + @staticmethod + def test_scubagoggles_output(subjectemail: str): + """ + Test if the `scubagoggles gws` command generates correct output for + all baselines. + + Args: + subjectemail: The email address of a user for the service account. + If None (or the empty string), the user's OAuth credentials are + used instead. + """ + + svc_account_option = (f' --subjectemail {subjectemail}' if subjectemail + else '') + command = f'scubagoggles gws{svc_account_option} --quiet' + + try: + subprocess.run(command, shell=True, check=True) + output_path = get_output_path() + output: list = verify_output_type(output_path, []) + report_dir = sample_report_dir() + required_entries = get_required_entries(report_dir, []) + verify_all_outputs_exist(output, required_entries) + except (OSError, ValueError, Exception) as e: + pytest.fail(f'An error occurred, {e}') + + @staticmethod + def test_scubaresults(): + """ + Determine if ScubaResults.json contains API errors or exceptions. + """ + try: + output_path = get_output_path() + verify_scubaresults(output_path) + except (ValueError, Exception) as e: + pytest.fail(f'An error occurred, {e}') + + @staticmethod + def test_scubagoggles_report(browser, customerdomain): + """ + Test if the generated baseline reports are correct, + i.e. BaselineReports.html, CalendarReport.html, ChatReport.html + """ + try: + output_path = get_output_path() + report_path: str = top_report_url(output_path) + browser.get(report_path) + run_selenium(browser, customerdomain) + except (ValueError, AssertionError, Exception) as e: + browser.quit() + pytest.fail(f'An error occurred, {e}') diff --git a/Testing/Functional/SmokeTests/smoke_test_utils.py b/scubagoggles/Testing/Functional/SmokeTests/smoke_test_utils.py similarity index 52% rename from Testing/Functional/SmokeTests/smoke_test_utils.py rename to scubagoggles/Testing/Functional/SmokeTests/smoke_test_utils.py index f90ed528..6cbfb75c 100644 --- a/Testing/Functional/SmokeTests/smoke_test_utils.py +++ b/scubagoggles/Testing/Functional/SmokeTests/smoke_test_utils.py @@ -1,21 +1,28 @@ """ -Helper methods for running the functional smoke tests. +Helper methods for running the functional smoke tests. """ import os import json + +from operator import itemgetter +from pathlib import Path + from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions from scubagoggles.orchestrator import Orchestrator -from scubagoggles.utils import get_package_version +from scubagoggles.config import UserConfig +from scubagoggles.user_setup import default_file_names +from scubagoggles.version import Version + +OUTPUT_DIRECTORY = 'GWSBaselineConformance' +BASELINE_REPORT_H1 = 'SCuBA GWS Secure Configuration Baseline Reports' +CISA_GOV_URL = 'https://www.cisa.gov/scuba' +SCUBAGOGGLES_BASELINES_URL = 'https://github.com/cisagov/ScubaGoggles/tree/main/baselines' -OUTPUT_DIRECTORY = "GWSBaselineConformance" -BASELINE_REPORT_H1 = "SCuBA GWS Secure Configuration Baseline Reports" -CISA_GOV_URL = "https://www.cisa.gov/scuba" -SCUBAGOGGLES_BASELINES_URL = "https://github.com/cisagov/ScubaGoggles/tree/main/baselines" -def get_output_path() -> str: +def get_output_path() -> Path: """ Get the latest output directory created by `scubagoggles gws`. The default name is "GWSBaselineConformance_. @@ -23,12 +30,17 @@ def get_output_path() -> str: Returns: str: The path to the latest output directory """ - directories: list = [ - d for d in os.listdir() - if os.path.isdir(d) and d.startswith(OUTPUT_DIRECTORY) - ] - directories.sort(key=os.path.getctime, reverse=True) - return os.path.join(os.getcwd(), directories[0]) + + config = UserConfig() + output_dir = config.output_dir + dir_pattern = f'{default_file_names.output_folder_name}*' + + directories = [(d, d.stat().st_ctime) + for d in output_dir.glob(dir_pattern)] + directories.sort(key = itemgetter(1), reverse = True) + + return directories[0][0] + def prepend_file_protocol(path: str) -> str: """ @@ -37,46 +49,81 @@ def prepend_file_protocol(path: str) -> str: Returns: str: Path to a file with the local filesystem prepended """ - if not path.startswith("file://"): - path = "file://" + path + if not path.startswith('file://'): + path = 'file://' + path return path -def verify_output_type(output_path: str, output: list) -> list: + +def verify_output_type(output_path: Path, output: list) -> list: """ Checks if the output generated from `scubagoggles` creates the correct output. - Validate files/directories and catch invalid json. + Validate files/directories and catch invalid json. Args: output_path: The output path, i.e. "GWSBaselineConformance_" output: Initialized as an empty list - + Returns: list: All output file and directory names """ - entries: list = os.listdir(output_path) - for entry in entries: + for entry in output_path.iterdir(): output.append(entry) # Check if entry is a valid directory or file # If a valid directory, then recurse - child_path: str = os.path.join(output_path, entry) - if os.path.isdir(child_path): + if entry.is_dir(): assert True - verify_output_type(child_path, output) - elif os.path.isfile(child_path): + verify_output_type(entry, output) + elif os.path.isfile(entry): # Check for valid json - if child_path.endswith(".json"): + if entry.suffix.lower() == '.json': try: - with open(child_path, encoding="utf-8") as jsonfile: + with entry.open(encoding = 'utf-8') as jsonfile: json.load(jsonfile) except ValueError as e: - raise ValueError(f"{child_path} contains invalid json") from e + raise ValueError(f'{entry} contains invalid json') from e assert True else: - raise OSError("Entry is not a directory or file (symlink, etc.)") + raise OSError('Entry is not a directory or file (symlink, etc.)') return output + +def sample_report_dir() -> Path: + + """Returns the location of the ScubaGoggles sample report directory. It's + assumed that this directory located up the directory hierarchy where this + script is located. + + :return: Path pointing to the sample report directory. + """ + + current_dir = Path(__file__).parent + while current_dir.anchor != str(current_dir): + + report_path = current_dir / 'sample-report' + if report_path.is_dir(): + return report_path + + current_dir = current_dir.parent + + raise NotADirectoryError('? sample report directory missing') + + +def top_report_url(output_path: Path) -> str: + + """Returns the URL for the top-level HTML ScubaGoggles baseline report, + given the output directory from a conformance run. + + :param Path output_path: ScubaGoggles output directory + :return: local (file://) URL for the top-level HTML report. + """ + + report_path = output_path / f'{default_file_names.report_output_name}.html' + + return prepend_file_protocol(str(report_path)) + + def get_required_entries(sample_report, required_entries) -> list: """ From the "sample-report" directory, add all file and directory names @@ -86,17 +133,18 @@ def get_required_entries(sample_report, required_entries) -> list: Args: sample_report: Path where "sample-report" is located in the project required_entries: Initialized as an empty list - + Returns: list: All required file and directory names """ - with os.scandir(sample_report) as entries: - for entry in entries: - required_entries.append(entry.name) - if entry.is_dir(): - get_required_entries(entry.path, required_entries) + for entry in sample_report.iterdir(): + required_entries.append(entry.name) + if entry.is_dir(): + get_required_entries(entry, required_entries) + return required_entries + def verify_all_outputs_exist(output: list, required_entries: list): """ Verify all files and directories are created after running `scubagoggles gws`. @@ -105,25 +153,32 @@ def verify_all_outputs_exist(output: list, required_entries: list): output: a list of all files and directories generated by `scubagoggles gws` required_entries: a list of all required file and directory names """ + output_names = {entry.name for entry in output} for required_entry in required_entries: - if required_entry in output: + if required_entry in output_names: assert True else: - raise ValueError(f"{required_entry} was not found in the generated report") + raise ValueError(f'{required_entry} was not found in the generated report') + -def verify_scubaresults(jsonfile): +def verify_scubaresults(output_path: Path): """ Verify "ScubaResults.json" is valid, and check if any errors are displayed in the reports. Args: - jsonfile: Path to a json file + output_path: ScubaGoggles output directory containing the results JSON + file. """ - scubaresults = json.load(jsonfile) - summaries = scubaresults["Summary"] + results_path = output_path / f'{default_file_names.json_output_name}.json' + with results_path.open(encoding = 'utf-8') as jsonfile: + scubaresults = json.load(jsonfile) + + summaries = scubaresults['Summary'] for product, summary in summaries.items(): - if summary["Errors"] != 0: - raise ValueError(f"{product} contains errors in the report") + if summary['Errors'] != 0: + raise ValueError(f'{product} contains errors in the report') + def run_selenium(browser, customerdomain): """ @@ -134,13 +189,13 @@ def run_selenium(browser, customerdomain): customerdomain: The customer domain """ verify_navigation_links(browser) - h1 = browser.find_element(By.TAG_NAME, "h1").text + h1 = browser.find_element(By.TAG_NAME, 'h1').text assert h1 == BASELINE_REPORT_H1 gws_products = Orchestrator.gws_products() products = { - product: { "title": f"{product} Baseline Report" } - for product in gws_products["prod_to_fullname"].values() + product: { 'title': f'{product} Baseline Report' } + for product in gws_products['prod_to_fullname'].values() } # Before entering loop check that we actually display 10 rows in table @@ -154,61 +209,62 @@ def run_selenium(browser, customerdomain): verify_tenant_table(browser, customerdomain, True) reports_table = get_reports_table(browser)[i] - baseline_report = reports_table.find_elements(By.TAG_NAME, "td")[0] + baseline_report = reports_table.find_elements(By.TAG_NAME, 'td')[0] product = baseline_report.text assert product in products - individual_report_anchor = baseline_report.find_element(By.TAG_NAME, "a") - individual_report_anchor_href = individual_report_anchor.get_attribute("href") + individual_report_anchor = baseline_report.find_element(By.TAG_NAME, 'a') + individual_report_anchor_href = individual_report_anchor.get_attribute('href') individual_report_anchor.click() current_url = browser.current_url() assert individual_report_anchor_href == current_url # Check at the individual report level verify_navigation_links(browser) - h1 = browser.find_element(By.TAG_NAME, "h1").text - assert h1 == products[product]["title"] + h1 = browser.find_element(By.TAG_NAME, 'h1').text + assert h1 == products[product]['title'] # Check if customerdomain and tool version are present in individual report verify_tenant_table(browser, customerdomain, False) - policy_tables = browser.find_elements(By.TAG_NAME, "table") + policy_tables = browser.find_elements(By.TAG_NAME, 'table') for table in policy_tables[1:]: # Verify policy table headers are correct headers = ( - table.find_element(By.TAG_NAME, "thead") - .find_elements(By.TAG_NAME, "tr")[0] - .find_elements(By.TAG_NAME, "th") + table.find_element(By.TAG_NAME, 'thead') + .find_elements(By.TAG_NAME, 'tr')[0] + .find_elements(By.TAG_NAME, 'th') ) assert len(headers) == 5 - assert headers[0].text == "Control ID" - assert headers[1].text in "Requirements" or headers[1].text in "Rule Name" - assert headers[2].text == "Result" - assert headers[3].text == "Criticality" - assert headers[4].text in "Details" or headers[4].text in "Rule Description" + assert headers[0].text == 'Control ID' + assert headers[1].text in 'Requirements' or headers[1].text in 'Rule Name' + assert headers[2].text == 'Result' + assert headers[3].text == 'Criticality' + assert headers[4].text in 'Details' or headers[4].text in 'Rule Description' # Verify policy table rows are populated - tbody = table.find_element(By.TAG_NAME, "tbody") - rows = tbody.find_elements(By.TAG_NAME, "tr") + tbody = table.find_element(By.TAG_NAME, 'tbody') + rows = tbody.find_elements(By.TAG_NAME, 'tr') assert len(rows) > 0 parent_report_anchor = ( - browser.find_element(By.TAG_NAME, "header") - .find_element(By.TAG_NAME, "a") + browser.find_element(By.TAG_NAME, 'header') + .find_element(By.TAG_NAME, 'a') ) - parent_report_anchor_href = parent_report_anchor.get_attribute("href") + parent_report_anchor_href = parent_report_anchor.get_attribute('href') parent_report_anchor.click() current_url = browser.current_url() assert parent_report_anchor_href == current_url WebDriverWait(browser, 10).until( expected_conditions.presence_of_element_located( - (By.TAG_NAME, "body") + (By.TAG_NAME, 'body') ) ) else: - raise ValueError("Expected the reports table to have a length of 10") + raise ValueError('Expected the reports table to have a length of 10') + def verify_navigation_links(browser): """ @@ -218,12 +274,13 @@ def verify_navigation_links(browser): browser: A Selenium WebDriver instance """ links = ( - browser.find_element(By.CLASS_NAME, "links") - .find_elements(By.TAG_NAME, "a") + browser.find_element(By.CLASS_NAME, 'links') + .find_elements(By.TAG_NAME, 'a') ) if len(links) == 2: - assert links[0].get_attribute("href") == CISA_GOV_URL - assert links[1].get_attribute("href") == SCUBAGOGGLES_BASELINES_URL + assert links[0].get_attribute('href') == CISA_GOV_URL + assert links[1].get_attribute('href') == SCUBAGOGGLES_BASELINES_URL + def get_reports_table(browser): """ @@ -234,9 +291,9 @@ def get_reports_table(browser): browser: A Selenium WebDriver instance """ return ( - browser.find_elements(By.TAG_NAME, "table")[1] - .find_element(By.TAG_NAME, "tbody") - .find_elements(By.TAG_NAME, "tr") + browser.find_elements(By.TAG_NAME, 'table')[1] + .find_element(By.TAG_NAME, 'tbody') + .find_elements(By.TAG_NAME, 'tr') ) def verify_tenant_table(browser, customerdomain, parent): @@ -250,19 +307,18 @@ def verify_tenant_table(browser, customerdomain, parent): parent: boolean to determine parent/individual reports """ tenant_table_rows = ( - browser.find_element(By.TAG_NAME, "table") - .find_element(By.TAG_NAME, "tbody") - .find_elements(By.TAG_NAME, "tr") + browser.find_element(By.TAG_NAME, 'table') + .find_element(By.TAG_NAME, 'tbody') + .find_elements(By.TAG_NAME, 'tr') ) assert len(tenant_table_rows) == 2 - domain = tenant_table_rows[1].find_elements(By.TAG_NAME, "td")[0].text + domain = tenant_table_rows[1].find_elements(By.TAG_NAME, 'td')[0].text assert domain == customerdomain if not parent: # Check for correct tool version, e.g. 0.2.0 - version = get_package_version("scubagoggles") - tool_version = tenant_table_rows[1].find_elements(By.TAG_NAME, "td")[3].text - assert version == tool_version + tool_version = tenant_table_rows[1].find_elements(By.TAG_NAME, 'td')[3].text + assert tool_version == Version.current # Baseline version should also be checked in this method # Add as an additional todo diff --git a/Testing/Functional/conftest.py b/scubagoggles/Testing/Functional/conftest.py similarity index 99% rename from Testing/Functional/conftest.py rename to scubagoggles/Testing/Functional/conftest.py index f84c2a62..71746ba6 100644 --- a/Testing/Functional/conftest.py +++ b/scubagoggles/Testing/Functional/conftest.py @@ -5,6 +5,7 @@ import pytest from SmokeTests.selenium_browser import Browser + def pytest_addoption(parser): """ Add custom cli arguments when running `pytest`. @@ -15,6 +16,7 @@ def pytest_addoption(parser): parser.addoption("--subjectemail", action="store") parser.addoption("--customerdomain", action="store") + @pytest.fixture def subjectemail(pytestconfig): """ @@ -25,6 +27,7 @@ def subjectemail(pytestconfig): """ return pytestconfig.getoption("subjectemail") + @pytest.fixture def customerdomain(pytestconfig): """ @@ -35,6 +38,7 @@ def customerdomain(pytestconfig): """ return pytestconfig.getoption("customerdomain") + @pytest.fixture def browser(): """ diff --git a/Testing/RegoTests/calendar/calendar01_test.rego b/scubagoggles/Testing/RegoTests/calendar/calendar01_test.rego similarity index 74% rename from Testing/RegoTests/calendar/calendar01_test.rego rename to scubagoggles/Testing/RegoTests/calendar/calendar01_test.rego index 444e0d8a..702e7cd7 100644 --- a/Testing/RegoTests/calendar/calendar01_test.rego +++ b/scubagoggles/Testing/RegoTests/calendar/calendar01_test.rego @@ -1,12 +1,19 @@ package calendar + import future.keywords +import data.utils.FailTestBothNonCompliant +import data.utils.FailTestGroupNonCompliant +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.CALENDAR.1.1v0.3 +# GWS.CALENDAR.1.1 #-- + test_ExtSharingPrimaryCal_Correct_V1 if { # Test external sharing for primary calendars when there's only one event - PolicyId := "GWS.CALENDAR.1.1v0.3" + PolicyId := CalendarId1_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -26,16 +33,12 @@ test_ExtSharingPrimaryCal_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_ExtSharingPrimaryCal_Correct_V2 if { # Test external sharing for primary calendars when there's multiple events and the most most recent is correct - PolicyId := "GWS.CALENDAR.1.1v0.3" + PolicyId := CalendarId1_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -66,16 +69,12 @@ test_ExtSharingPrimaryCal_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_ExtSharingPrimaryCal_Correct_V3 if { # Test external sharing for primary calendars when there's multiple OUs - PolicyId := "GWS.CALENDAR.1.1v0.3" + PolicyId := CalendarId1_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -106,16 +105,12 @@ test_ExtSharingPrimaryCal_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_ExtSharingPrimaryCal_Correct_V4 if { # Test external sharing for primary calendars when there's multiple OUs, and an older event is non-compliant - PolicyId := "GWS.CALENDAR.1.1v0.3" + PolicyId := CalendarId1_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -157,16 +152,12 @@ test_ExtSharingPrimaryCal_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_ExtSharingPrimaryCal_Correct_V5 if { # Test external sharing for primary, inherit from parent - PolicyId := "GWS.CALENDAR.1.1v0.3" + PolicyId := CalendarId1_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -208,16 +199,12 @@ test_ExtSharingPrimaryCal_Correct_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_ExtSharingPrimaryCal_Correct_V6 if { # Test group - PolicyId := "GWS.CALENDAR.1.1v0.3" + PolicyId := CalendarId1_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -249,16 +236,12 @@ test_ExtSharingPrimaryCal_Correct_V6 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_ExtSharingPrimaryCal_Incorrect_V1 if { # Test external sharing for primary calendars when there are no relevant events - PolicyId := "GWS.CALENDAR.1.1v0.3" + PolicyId := CalendarId1_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -278,20 +261,12 @@ test_ExtSharingPrimaryCal_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_ExtSharingPrimaryCal_Incorrect_V2 if { # Test external sharing for primary calendars when there's only one event and it's wrong - PolicyId := "GWS.CALENDAR.1.1v0.3" + PolicyId := CalendarId1_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -311,18 +286,14 @@ test_ExtSharingPrimaryCal_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "External sharing options for primary calendars is set to ", - "Share all information, but outsiders cannot change calendars
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_1("Share all information, but outsiders cannot change calendars")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_ExtSharingPrimaryCal_Incorrect_V3 if { # Test external sharing for primary calendars when there are multiple events and the most recent is wrong - PolicyId := "GWS.CALENDAR.1.1v0.3" + PolicyId := CalendarId1_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -353,19 +324,15 @@ test_ExtSharingPrimaryCal_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "External sharing options for primary calendars is set to ", - "Share all information, but outsiders cannot change calendars
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_1("Share all information, but outsiders cannot change calendars")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_ExtSharingPrimaryCal_Incorrect_V4 if { # Test external sharing for primary calendars when there is no event for the Top-level OU # but there is one for a different OU - PolicyId := "GWS.CALENDAR.1.1v0.3" + PolicyId := CalendarId1_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -385,21 +352,13 @@ test_ExtSharingPrimaryCal_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_ExtSharingPrimaryCal_Incorrect_V5 if { # Test external sharing for primary calendars when the Top-Level OU is compliant, # but a secondary OU is non-compliant - PolicyId := "GWS.CALENDAR.1.1v0.3" + PolicyId := CalendarId1_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -430,18 +389,14 @@ test_ExtSharingPrimaryCal_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "External sharing options for primary calendars is set to ", - "Share all information, but outsiders cannot change calendars
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage1_1("Share all information, but outsiders cannot change calendars")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_ExtSharingPrimaryCal_Incorrect_V6 if { # Test: top-level OU is compliant but a group is non-compliant - PolicyId := "GWS.CALENDAR.1.1v0.3" + PolicyId := CalendarId1_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -473,18 +428,15 @@ test_ExtSharingPrimaryCal_Incorrect_V6 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following groups are non-compliant:
  • group1@example.com: ", - "External sharing options for primary calendars is set to ", - "Share all information, but outsiders cannot change calendars
"]) + Value := "Share all information, but outsiders cannot change calendars" + failedGroup := [{"Name": "group1@example.com", + "Value": NonComplianceMessage1_1(Value)}] + FailTestGroupNonCompliant(PolicyId, Output, failedGroup) } test_ExtSharingPrimaryCal_Incorrect_V if { # Test: top-level OU and a group are non-compliant - PolicyId := "GWS.CALENDAR.1.1v0.3" + PolicyId := CalendarId1_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -516,25 +468,22 @@ test_ExtSharingPrimaryCal_Incorrect_V if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "External sharing options for primary calendars is set to ", - "Share all information, but outsiders cannot change calendars

", - "The following groups are non-compliant:
  • group1@example.com: ", - "External sharing options for primary calendars is set to ", - "Share all information, but outsiders cannot change calendars
"]) + Value := "Share all information, but outsiders cannot change calendars" + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_1(Value)}] + failedGroup := [{"Name": "group1@example.com", + "Value": NonComplianceMessage1_1(Value)}] + FailTestBothNonCompliant(PolicyId, Output, failedOU, failedGroup) } #-- # -# GWS.CALENDAR.1.2v0.3 +# GWS.CALENDAR.1.2 #-- + test_ExtSharingSecondaryCal_Correct_V1 if { # Test external sharing for secondary calendars when there's only one event - PolicyId := "GWS.CALENDAR.1.2v0.3" + PolicyId := CalendarId1_2 Output := tests with input as { "calendar_logs": {"items": [ { @@ -554,19 +503,12 @@ test_ExtSharingSecondaryCal_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "Requirement met.
", - "Highest Level of Sharing: Only free/busy information (hide event details)." - ]) + PassTestResult(PolicyId, Output) } test_ExtSharingSecondaryCal_Correct_V2 if { # Test external sharing for secondary calendars when there's multiple events and the most most recent is correct - PolicyId := "GWS.CALENDAR.1.2v0.3" + PolicyId := CalendarId1_2 Output := tests with input as { "calendar_logs": {"items": [ { @@ -597,19 +539,12 @@ test_ExtSharingSecondaryCal_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "Requirement met.
", - "Highest Level of Sharing: Only free/busy information (hide event details)." - ]) + PassTestResult(PolicyId, Output) } test_ExtSharingSecondaryCal_Incorrect_V1 if { # Test external sharing for secondary calendars when there are no relevant events - PolicyId := "GWS.CALENDAR.1.2v0.3" + PolicyId := CalendarId1_2 Output := tests with input as { "calendar_logs": {"items": [ { @@ -629,20 +564,12 @@ test_ExtSharingSecondaryCal_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_ExtSharingSecondaryCal_Incorrect_V2 if { # Test external sharing for secondary calendars when there's only one event and it's wrong - PolicyId := "GWS.CALENDAR.1.2v0.3" + PolicyId := CalendarId1_2 Output := tests with input as { "calendar_logs": {"items": [ { @@ -662,20 +589,14 @@ test_ExtSharingSecondaryCal_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "Requirement not met.
", - "Highest Level of Sharing: Secondary Calendars Share all information,", - " but outsiders cannot change calendars." - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_2("Share all information, but outsiders cannot change calendars")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_ExtSharingSecondaryCal_Incorrect_V3 if { # Test external sharing for secondary calendars when there are multiple events and the most recent is wrong - PolicyId := "GWS.CALENDAR.1.2v0.3" + PolicyId := CalendarId1_2 Output := tests with input as { "calendar_logs": {"items": [ { @@ -706,15 +627,8 @@ test_ExtSharingSecondaryCal_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "Requirement not met.
", - "Highest Level of Sharing: Secondary Calendars Share all information,", - " but outsiders cannot change calendars." - ]) - + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_2("Share all information, but outsiders cannot change calendars")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/calendar/calendar02_test.rego b/scubagoggles/Testing/RegoTests/calendar/calendar02_test.rego similarity index 75% rename from Testing/RegoTests/calendar/calendar02_test.rego rename to scubagoggles/Testing/RegoTests/calendar/calendar02_test.rego index 6a25aba8..b5e85b4f 100644 --- a/Testing/RegoTests/calendar/calendar02_test.rego +++ b/scubagoggles/Testing/RegoTests/calendar/calendar02_test.rego @@ -1,12 +1,18 @@ package calendar + import future.keywords +import data.utils.FailTestBothNonCompliant +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# Policy 1 +# GWS.CALENDAR.2.1 #-- + test_ExtInvitationsWarning_Correct_V1 if { # Test external invitations warnings when there's only one event - PolicyId := "GWS.CALENDAR.2.1v0.3" + PolicyId := CalendarId2_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -26,16 +32,12 @@ test_ExtInvitationsWarning_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_ExtInvitationsWarning_Correct_V2 if { # Test external invitations warning when there's multiple events and the most most recent is correct - PolicyId := "GWS.CALENDAR.2.1v0.3" + PolicyId := CalendarId2_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -66,16 +68,12 @@ test_ExtInvitationsWarning_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_ExtInvitationsWarning_Correct_V3 if { # Test external invitations warning when there's multiple OUs - PolicyId := "GWS.CALENDAR.2.1v0.3" + PolicyId := CalendarId2_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -106,16 +104,12 @@ test_ExtInvitationsWarning_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_ExtInvitationsWarning_Correct_V4 if { # Test external invitations warning when there's multiple OUs, and an older event is non-compliant - PolicyId := "GWS.CALENDAR.2.1v0.3" + PolicyId := CalendarId2_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -157,16 +151,12 @@ test_ExtInvitationsWarning_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_ExtInvitationsWarning_Incorrect_V1 if { # Test external invitations warning when there are no relevant events - PolicyId := "GWS.CALENDAR.2.1v0.3" + PolicyId := CalendarId2_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -186,20 +176,12 @@ test_ExtInvitationsWarning_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_ExtInvitationsWarning_Incorrect_V2 if { # Test external invitations warning when there's only one event and it's wrong - PolicyId := "GWS.CALENDAR.2.1v0.3" + PolicyId := CalendarId2_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -219,18 +201,14 @@ test_ExtInvitationsWarning_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: External Sharing Guest Prompt is disabled.
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_ExtInvitationsWarning_Incorrect_V3 if { # Test external invitations warning when there are multiple events and the most recent is wrong - PolicyId := "GWS.CALENDAR.2.1v0.3" + PolicyId := CalendarId2_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -261,19 +239,14 @@ test_ExtInvitationsWarning_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • ", - "Test Top-Level OU: External Sharing Guest Prompt is disabled.
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_ExtInvitationsWarning_Incorrect_V4 if { # Test external invitations warning when there is no event for the Top-level OU but there is one for a different OU - PolicyId := "GWS.CALENDAR.2.1v0.3" + PolicyId := CalendarId2_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -293,20 +266,12 @@ test_ExtInvitationsWarning_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_ExtInvitationsWarning_Incorrect_V5 if { # Test external invitations warning when the Top-Level OU is compliant, but a secondary OU is non-compliant - PolicyId := "GWS.CALENDAR.2.1v0.3" + PolicyId := CalendarId2_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -337,18 +302,14 @@ test_ExtInvitationsWarning_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Secondary OU: ", - "External Sharing Guest Prompt is disabled.
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage2_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_ExtInvitationsWarning_Incorrect_V6 if { # Test ou and group - PolicyId := "GWS.CALENDAR.2.1v0.3" + PolicyId := CalendarId2_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -380,14 +341,10 @@ test_ExtInvitationsWarning_Incorrect_V6 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("",["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "External Sharing Guest Prompt is disabled.

", - "The following groups are non-compliant:", - "
  • group1@example.com: ", - "External Sharing Guest Prompt is disabled.
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1("disabled")}] + failedGroup := [{"Name": "group1@example.com", + "Value": NonComplianceMessage2_1("disabled")}] + FailTestBothNonCompliant(PolicyId, Output, failedOU, failedGroup) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/calendar/calendar03_test.rego b/scubagoggles/Testing/RegoTests/calendar/calendar03_test.rego similarity index 76% rename from Testing/RegoTests/calendar/calendar03_test.rego rename to scubagoggles/Testing/RegoTests/calendar/calendar03_test.rego index 0c50e688..fa01ac37 100644 --- a/Testing/RegoTests/calendar/calendar03_test.rego +++ b/scubagoggles/Testing/RegoTests/calendar/calendar03_test.rego @@ -1,13 +1,17 @@ package calendar -import future.keywords +import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# Policy 1 +# GWS.CALENDAR.3.1 #-- + test_CalInteropMan_Correct_V1 if { # Test calendar interop management when there's only one event - PolicyId := "GWS.CALENDAR.3.1v0.3" + PolicyId := CalendarId3_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -27,17 +31,12 @@ test_CalInteropMan_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == - "Requirement met." + PassTestResult(PolicyId, Output) } test_CalInteropMan_Correct_V2 if { # Test calendar interop management when there's multiple events and the most most recent is correct - PolicyId := "GWS.CALENDAR.3.1v0.3" + PolicyId := CalendarId3_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -68,17 +67,12 @@ test_CalInteropMan_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == - "Requirement met." + PassTestResult(PolicyId, Output) } test_CalInteropMan_Incorrect_V1 if { # Test calendar interop management when there are no relevant events - PolicyId := "GWS.CALENDAR.3.1v0.3" + PolicyId := CalendarId3_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -98,20 +92,12 @@ test_CalInteropMan_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_CalInteropMan_Incorrect_V2 if { # Test calendar interop management when there's only one event and it's wrong - PolicyId := "GWS.CALENDAR.3.1v0.3" + PolicyId := CalendarId3_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -131,16 +117,14 @@ test_CalInteropMan_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement not met." + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("enabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_CalInteropMan_Incorrect_V3 if { # Test calendar interop management when there are multiple events and the most recent is wrong - PolicyId := "GWS.CALENDAR.3.1v0.3" + PolicyId := CalendarId3_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -171,21 +155,19 @@ test_CalInteropMan_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement not met." + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("enabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- # -# GWS.CALENDAR.3.2v0.3 +# GWS.CALENDAR.3.2 #-- test_OAuth_Correct_V1 if { # Not-Implemented - PolicyId := "GWS.CALENDAR.3.2v0.3" + PolicyId := CalendarId3_2 Output := tests with input as { "calendar_logs": {"items": [ ]}, @@ -200,4 +182,4 @@ test_OAuth_Correct_V1 if { RuleOutput[0].NoSuchEvent RuleOutput[0].ReportDetails == "Currently not able to be tested automatically; please manually check." } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/calendar/calendar04_test.rego b/scubagoggles/Testing/RegoTests/calendar/calendar04_test.rego similarity index 72% rename from Testing/RegoTests/calendar/calendar04_test.rego rename to scubagoggles/Testing/RegoTests/calendar/calendar04_test.rego index 6304847e..8d38c828 100644 --- a/Testing/RegoTests/calendar/calendar04_test.rego +++ b/scubagoggles/Testing/RegoTests/calendar/calendar04_test.rego @@ -1,12 +1,16 @@ package calendar + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.CALENDAR.4.1v0.3 +# GWS.CALENDAR.4.1 #-- test_CalendarAppointmentSlot_Correct_V1 if { # Test Calendar Appointment Slot when there's only one event - PolicyId := "GWS.CALENDAR.4.1v0.3" + PolicyId := CalendarId4_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -25,16 +29,12 @@ test_CalendarAppointmentSlot_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_CalendarAppointmentSlot_Correct_V2 if { # Test Calendar Appointment Slot when there's multiple events and the most recent is correct - PolicyId := "GWS.CALENDAR.4.1v0.3" + PolicyId := CalendarId4_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -63,16 +63,12 @@ test_CalendarAppointmentSlot_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_CalendarAppointmentSlot_Correct_V3 if { # Test Calendar Appointment Slot when there's correct events in multiple OUs - PolicyId := "GWS.CALENDAR.4.1v0.3" + PolicyId := CalendarId4_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -101,16 +97,12 @@ test_CalendarAppointmentSlot_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_CalendarAppointmentSlot_Incorrect_V1 if { # Test Calendar Appointment Slot when there are no relevant events - PolicyId := "GWS.CALENDAR.4.1v0.3" + PolicyId := CalendarId4_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -129,20 +121,12 @@ test_CalendarAppointmentSlot_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_CalendarAppointmentSlot_Incorrect_V2 if { # Test Calendar Appointment Slot when there's only one event and it's wrong - PolicyId := "GWS.CALENDAR.4.1v0.3" + PolicyId := CalendarId4_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -161,17 +145,14 @@ test_CalendarAppointmentSlot_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Paid calendar appointments are enabled.
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1("enabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_CalendarAppointmentSlot_Incorrect_V3 if { # Test Calendar Appointment Slot when there are multiple events and the most recent is wrong - PolicyId := "GWS.CALENDAR.4.1v0.3" + PolicyId := CalendarId4_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -200,17 +181,14 @@ test_CalendarAppointmentSlot_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Paid calendar appointments are enabled.
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1("enabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_CalendarAppointmentSlot_Incorrect_V4 if { # Test Calendar Appointment Slot when there's only one event and it's wrong - PolicyId := "GWS.CALENDAR.4.1v0.3" + PolicyId := CalendarId4_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -229,17 +207,14 @@ test_CalendarAppointmentSlot_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Paid calendar appointments are enabled.
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage4_1("enabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_CalendarAppointmentSlot_Incorrect_V5 if { # Test Calendar Appointment Slot when there are multiple events and the most recent is wrong - PolicyId := "GWS.CALENDAR.4.1v0.3" + PolicyId := CalendarId4_1 Output := tests with input as { "calendar_logs": {"items": [ { @@ -268,11 +243,8 @@ test_CalendarAppointmentSlot_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Paid calendar appointments are enabled.
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage4_1("enabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -#-- \ No newline at end of file +#-- diff --git a/scubagoggles/Testing/RegoTests/calendar/calendar_api01_test.rego b/scubagoggles/Testing/RegoTests/calendar/calendar_api01_test.rego new file mode 100644 index 00000000..c1feebde --- /dev/null +++ b/scubagoggles/Testing/RegoTests/calendar/calendar_api01_test.rego @@ -0,0 +1,76 @@ +package calendar + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodCalendarApi01 := { + "policies": { + "topOU": { + "calendar_primary_calendar_max_allowed_external_sharing": { + "maxAllowedExternalSharing": "EXTERNAL_FREE_BUSY_ONLY"}, + "calendar_secondary_calendar_max_allowed_external_sharing": { + "maxAllowedExternalSharing": "EXTERNAL_FREE_BUSY_ONLY"}, + "calendar_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "calendar_primary_calendar_max_allowed_external_sharing": { + "maxAllowedExternalSharing": "EXTERNAL_ALL_INFO_READ_WRITE"}, + "calendar_secondary_calendar_max_allowed_external_sharing": { + "maxAllowedExternalSharing": "EXTERNAL_ALL_INFO_READ_WRITE_MANAGE"}, + "calendar_service_status": {"serviceState": "DISABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadCalendarApi01 := { + "policies": { + "topOU": { + "calendar_primary_calendar_max_allowed_external_sharing": { + "maxAllowedExternalSharing": "EXTERNAL_ALL_INFO_READ_WRITE"}, + "calendar_secondary_calendar_max_allowed_external_sharing": { + "maxAllowedExternalSharing": "EXTERNAL_ALL_INFO_READ_WRITE_MANAGE"}, + "calendar_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_CalendarAPI_PrimaryShare_Correct_1 if { + PolicyId := CalendarId1_1 + Output := tests with input as GoodCalendarApi01 + + PassTestResult(PolicyId, Output) +} + +test_CalendarAPI_PrimaryShare_Incorrect_1 if { + PolicyId := CalendarId1_1 + Output := tests with input as BadCalendarApi01 + + failedMsgValue := GetFriendlyValue1_1("EXTERNAL_ALL_INFO_READ_WRITE") + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage1_1(failedMsgValue)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_CalendarAPI_SecondaryShare_Correct_1 if { + PolicyId := CalendarId1_2 + Output := tests with input as GoodCalendarApi01 + + PassTestResult(PolicyId, Output) +} + +test_CalendarAPI_SecondaryShare_Incorrect_1 if { + PolicyId := CalendarId1_2 + Output := tests with input as BadCalendarApi01 + + failedMsgValue := GetFriendlyValue1_2("EXTERNAL_ALL_INFO_READ_WRITE_MANAGE") + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage1_2(failedMsgValue)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/calendar/calendar_api02_test.rego b/scubagoggles/Testing/RegoTests/calendar/calendar_api02_test.rego new file mode 100644 index 00000000..b1f46b6a --- /dev/null +++ b/scubagoggles/Testing/RegoTests/calendar/calendar_api02_test.rego @@ -0,0 +1,49 @@ +package calendar + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodCalendarApi02 := { + "policies": { + "topOU": { + "calendar_external_invitations": {"warnOnInvite": true}, + "calendar_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "calendar_external_invitations": {"warnOnInvite": false}, + "calendar_service_status": {"serviceState": "DISABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadCalendarApi02 := { + "policies": { + "topOU": { + "calendar_external_invitations": {"warnOnInvite": false}, + "calendar_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_CalendarAPI_WarnExternal_Correct_1 if { + PolicyId := CalendarId2_1 + Output := tests with input as GoodCalendarApi02 + + PassTestResult(PolicyId, Output) +} + +test_CalendarAPI_WarnExternal_Incorrect_1 if { + PolicyId := CalendarId2_1 + Output := tests with input as BadCalendarApi02 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage2_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/calendar/calendar_api03_test.rego b/scubagoggles/Testing/RegoTests/calendar/calendar_api03_test.rego new file mode 100644 index 00000000..9dc04c1b --- /dev/null +++ b/scubagoggles/Testing/RegoTests/calendar/calendar_api03_test.rego @@ -0,0 +1,49 @@ +package calendar + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodCalendarApi03 := { + "policies": { + "topOU": { + "calendar_interoperability": {"enableInteroperability": false}, + "calendar_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "calendar_interoperability": {"enableInteroperability": true}, + "calendar_service_status": {"serviceState": "DISABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadCalendarApi03 := { + "policies": { + "topOU": { + "calendar_interoperability": {"enableInteroperability": true}, + "calendar_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_CalendarAPI_Interoperability_Correct_1 if { + PolicyId := CalendarId3_1 + Output := tests with input as GoodCalendarApi03 + + PassTestResult(PolicyId, Output) +} + +test_CalendarAPI_Interoperability_Incorrect_1 if { + PolicyId := CalendarId3_1 + Output := tests with input as BadCalendarApi03 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage3_1("enabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/calendar/calendar_api04_test.rego b/scubagoggles/Testing/RegoTests/calendar/calendar_api04_test.rego new file mode 100644 index 00000000..522174c5 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/calendar/calendar_api04_test.rego @@ -0,0 +1,49 @@ +package calendar + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodCalendarApi04 := { + "policies": { + "topOU": { + "calendar_appointment_schedules": {"enablePayments": false}, + "calendar_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "calendar_appointment_schedules": {"enablePayments": true}, + "calendar_service_status": {"serviceState": "DISABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadCalendarApi04 := { + "policies": { + "topOU": { + "calendar_appointment_schedules": {"enablePayments": true}, + "calendar_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_CalendarAPI_Payments_Correct_1 if { + PolicyId := CalendarId4_1 + Output := tests with input as GoodCalendarApi04 + + PassTestResult(PolicyId, Output) +} + +test_CalendarAPI_Payments_Incorrect_1 if { + PolicyId := CalendarId4_1 + Output := tests with input as BadCalendarApi04 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage4_1("enabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/Testing/RegoTests/chat/chat01_test.rego b/scubagoggles/Testing/RegoTests/chat/chat01_test.rego similarity index 74% rename from Testing/RegoTests/chat/chat01_test.rego rename to scubagoggles/Testing/RegoTests/chat/chat01_test.rego index 9298d433..3e419310 100644 --- a/Testing/RegoTests/chat/chat01_test.rego +++ b/scubagoggles/Testing/RegoTests/chat/chat01_test.rego @@ -1,12 +1,16 @@ package chat + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -#GWS.CHAT.1.1v0.3 +# GWS.CHAT.1.1 #-- test_History_Correct_V1 if { # Test history setting when there's only one event - PolicyId := "GWS.CHAT.1.1v0.3" + PolicyId := ChatId1_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -25,17 +29,12 @@ test_History_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_History_Correct_V2 if { # Test history setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.CHAT.1.1v0.3" + PolicyId := ChatId1_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -64,16 +63,12 @@ test_History_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_History_Correct_V3 if { # Test history setting when there's multiple OUs - PolicyId := "GWS.CHAT.1.1v0.3" + PolicyId := ChatId1_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -102,16 +97,12 @@ test_History_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_History_Correct_V4 if { # Test history setting when there's multiple OUs and an older event non-compliant - PolicyId := "GWS.CHAT.1.1v0.3" + PolicyId := ChatId1_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -150,16 +141,12 @@ test_History_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_History_Correct_V5 if { # Test history setting when set to inherit from parent - PolicyId := "GWS.CHAT.1.1v0.3" + PolicyId := ChatId1_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -198,16 +185,12 @@ test_History_Correct_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_History_Incorrect_V1 if { # Test history setting when there are no relevant events - PolicyId := "GWS.CHAT.1.1v0.3" + PolicyId := ChatId1_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -226,20 +209,12 @@ test_History_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_History_Incorrect_V2 if { # Test history setting when there's only one event and it's wrong - PolicyId := "GWS.CHAT.1.1v0.3" + PolicyId := ChatId1_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -258,17 +233,14 @@ test_History_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Default conversation history is set to History is OFF
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_1("OFF")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_History_Incorrect_V3 if { # Test history setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.CHAT.1.1v0.3" + PolicyId := ChatId1_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -297,17 +269,14 @@ test_History_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Default conversation history is set to History is OFF
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_1("OFF")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_History_Incorrect_V4 if { # Test history setting when there is no event for the Top-level OU but there is one for a different OU - PolicyId := "GWS.CHAT.1.1v0.3" + PolicyId := ChatId1_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -326,21 +295,13 @@ test_History_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } #-- test_History_Incorrect_V5 if { # Test history setting when the Top-level OU is compliant but a secondary OU is non-compliant - PolicyId := "GWS.CHAT.1.1v0.3" + PolicyId := ChatId1_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -369,21 +330,18 @@ test_History_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Default conversation history is set to History is OFF
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage1_1("OFF")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- # -# GWS.CHAT.1.2v0.3 +# GWS.CHAT.1.2 #-- test_Change_History_Setting_Correct_V1 if { # Test allow user to change history setting when there's only one event - PolicyId := "GWS.CHAT.1.2v0.3" + PolicyId := ChatId1_2 Output := tests with input as { "chat_logs": {"items": [ { @@ -405,16 +363,12 @@ test_Change_History_Setting_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Change_History_Setting_Correct_V2 if { # Test allow user to change history setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.CHAT.1.2v0.3" + PolicyId := ChatId1_2 Output := tests with input as { "chat_logs": {"items": [ { @@ -449,16 +403,12 @@ test_Change_History_Setting_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Change_History_Setting_Correct_V3 if { # Test history setting when set to inherit from parent - PolicyId := "GWS.CHAT.1.2v0.3" + PolicyId := ChatId1_2 Output := tests with input as { "chat_logs": {"items": [ { @@ -506,16 +456,12 @@ test_Change_History_Setting_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Change_History_Setting_Incorrect_V1 if { # Test allow user to change history setting when there are no relevant events - PolicyId := "GWS.CHAT.1.2v0.3" + PolicyId := ChatId1_2 Output := tests with input as { "chat_logs": {"items": [ { @@ -534,20 +480,12 @@ test_Change_History_Setting_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_Change_History_Setting_Incorrect_V2 if { # Test allow user to change history setting when there's only one event and it's wrong - PolicyId := "GWS.CHAT.1.2v0.3" + PolicyId := ChatId1_2 Output := tests with input as { "chat_logs": {"items": [ { @@ -569,17 +507,14 @@ test_Change_History_Setting_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Allow users to change their history setting is set to true
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_2("Yes")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Change_History_Setting_Incorrect_V3 if { # Test allow user to change history setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.CHAT.1.2v0.3" + PolicyId := ChatId1_2 Output := tests with input as { "chat_logs": {"items": [ { @@ -614,18 +549,15 @@ test_Change_History_Setting_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Allow users to change their history setting is set to true
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_2("Yes")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- test_Change_History_Setting_Incorrect_V4 if { # Test allow user to change history setting when there are multiple OU and a secondary OU is wrong - PolicyId := "GWS.CHAT.1.2v0.3" + PolicyId := ChatId1_2 Output := tests with input as { "chat_logs": {"items": [ { @@ -660,18 +592,15 @@ test_Change_History_Setting_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Secondary OU: ", - "Allow users to change their history setting is set to true
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage1_2("Yes")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- test_Change_History_Setting_Incorrect_V5 if { # Test allow user to change history setting when the primary OU is missing but a different one is present - PolicyId := "GWS.CHAT.1.2v0.3" + PolicyId := ChatId1_2 Output := tests with input as { "chat_logs": {"items": [ { @@ -693,14 +622,6 @@ test_Change_History_Setting_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/chat/chat02_test.rego b/scubagoggles/Testing/RegoTests/chat/chat02_test.rego similarity index 74% rename from Testing/RegoTests/chat/chat02_test.rego rename to scubagoggles/Testing/RegoTests/chat/chat02_test.rego index 5f47a282..edadfd01 100644 --- a/Testing/RegoTests/chat/chat02_test.rego +++ b/scubagoggles/Testing/RegoTests/chat/chat02_test.rego @@ -1,12 +1,16 @@ package chat + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.CHAT.2.1v0.3 +# GWS.CHAT.2.1 #-- test_External_File_Sharing_Correct_V1 if { # Test users are not allowed to share files externally when there's only one event - PolicyId := "GWS.CHAT.2.1v0.3" + PolicyId := ChatId2_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -28,17 +32,13 @@ test_External_File_Sharing_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_External_File_Sharing_Correct_V2 if { # Test users are not allowed to share files externally when there's multiple events # and the most most recent is correct - PolicyId := "GWS.CHAT.2.1v0.3" + PolicyId := ChatId2_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -73,16 +73,12 @@ test_External_File_Sharing_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_External_File_Sharing_Correct_V3 if { # Test OU inheriting from parent - PolicyId := "GWS.CHAT.2.1v0.3" + PolicyId := ChatId2_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -130,16 +126,12 @@ test_External_File_Sharing_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_External_File_Sharing_Incorrect_V1 if { # Test no relevant events - PolicyId := "GWS.CHAT.2.1v0.3" + PolicyId := ChatId2_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -158,20 +150,12 @@ test_External_File_Sharing_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_External_File_Sharing_Incorrect_V2 if { # Test all allowed - PolicyId := "GWS.CHAT.2.1v0.3" + PolicyId := ChatId2_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -193,17 +177,14 @@ test_External_File_Sharing_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "External filesharing is set to Allow all files
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1("Allow all files")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_External_File_Sharing_Incorrect_V3 if { # Test images allowed - PolicyId := "GWS.CHAT.2.1v0.3" + PolicyId := ChatId2_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -225,17 +206,14 @@ test_External_File_Sharing_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "External filesharing is set to Images only
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1("Images only")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_External_File_Sharing_Incorrect_V4 if { # Test sharing allowed when there are multiple events - PolicyId := "GWS.CHAT.2.1v0.3" + PolicyId := ChatId2_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -270,17 +248,14 @@ test_External_File_Sharing_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "External filesharing is set to Allow all files
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1("Allow all files")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_External_File_Sharing_Incorrect_V5 if { # Test allowing images, multiple events - PolicyId := "GWS.CHAT.2.1v0.3" + PolicyId := ChatId2_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -315,17 +290,14 @@ test_External_File_Sharing_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "External filesharing is set to Images only
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1("Images only")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_External_File_Sharing_Incorrect_V6 if { # Test there's one event for a secondary OU but none for the primary OU - PolicyId := "GWS.CHAT.2.1v0.3" + PolicyId := ChatId2_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -347,20 +319,12 @@ test_External_File_Sharing_Incorrect_V6 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_External_File_Sharing_Incorrect_V7 if { # Test there's multiple OUs - PolicyId := "GWS.CHAT.2.1v0.3" + PolicyId := ChatId2_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -395,11 +359,8 @@ test_External_File_Sharing_Incorrect_V7 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Some other OU: ", - "External filesharing is set to Allow all files
"]) + failedOU := [{"Name": "Some other OU", + "Value": NonComplianceMessage2_1("Allow all files")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/chat/chat03_test.rego b/scubagoggles/Testing/RegoTests/chat/chat03_test.rego similarity index 70% rename from Testing/RegoTests/chat/chat03_test.rego rename to scubagoggles/Testing/RegoTests/chat/chat03_test.rego index eefc42a7..5f3800ca 100644 --- a/Testing/RegoTests/chat/chat03_test.rego +++ b/scubagoggles/Testing/RegoTests/chat/chat03_test.rego @@ -1,12 +1,16 @@ package chat + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.CHAT.3.1v0.3 +# GWS.CHAT.3.1 #-- test_Space_History_Setting_Correct_V1 if { # Test space history setting when there's only one event - use case #1 - PolicyId := "GWS.CHAT.3.1v0.3" + PolicyId := ChatId3_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -25,16 +29,12 @@ test_Space_History_Setting_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Space_History_Setting_Correct_V2 if { # Test space history setting when there's only one event - use case #2 - PolicyId := "GWS.CHAT.3.1v0.3" + PolicyId := ChatId3_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -53,16 +53,12 @@ test_Space_History_Setting_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Space_History_Setting_Correct_V3 if { # Test space history setting when there's multiple events and the most most recent is correct - use case #1 - PolicyId := "GWS.CHAT.3.1v0.3" + PolicyId := ChatId3_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -91,16 +87,12 @@ test_Space_History_Setting_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Space_History_Setting_Correct_V4 if { # Test space history setting when there's multiple events and the most most recent is correct - use case #2 - PolicyId := "GWS.CHAT.3.1v0.3" + PolicyId := ChatId3_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -129,16 +121,12 @@ test_Space_History_Setting_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Space_History_Setting_Incorrect_V1 if { # Test space history setting when there are no relevant events - PolicyId := "GWS.CHAT.3.1v0.3" + PolicyId := ChatId3_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -157,20 +145,12 @@ test_Space_History_Setting_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_Space_History_Setting_Incorrect_V2 if { # Test space history setting when there's only one event and it's wrong - use case #1 - PolicyId := "GWS.CHAT.3.1v0.3" + PolicyId := ChatId3_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -189,17 +169,14 @@ test_Space_History_Setting_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Conversation history settings for spaces is set to History is ALWAYS OFF
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("ALWAYS OFF")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Space_History_Setting_Incorrect_V3 if { # Test space history setting when there's only one event and it's wrong - use case #2 - PolicyId := "GWS.CHAT.3.1v0.3" + PolicyId := ChatId3_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -218,17 +195,14 @@ test_Space_History_Setting_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Conversation history settings for spaces is set to History is OFF by default
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("OFF by default")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Space_History_Setting_Incorrect_V4 if { # Test space history setting when there are multiple events and the most recent is wrong - use case #1 - PolicyId := "GWS.CHAT.3.1v0.3" + PolicyId := ChatId3_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -257,17 +231,14 @@ test_Space_History_Setting_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Conversation history settings for spaces is set to History is OFF by default
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("OFF by default")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Space_History_Setting_Incorrect_V5 if { # Test space history setting when there are multiple events and the most recent is wrong - use case #2 - PolicyId := "GWS.CHAT.3.1v0.3" + PolicyId := ChatId3_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -296,17 +267,14 @@ test_Space_History_Setting_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Conversation history settings for spaces is set to History is ALWAYS OFF
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("ALWAYS OFF")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Space_History_Setting_Incorrect_V6 if { # Test there's an event for a secondary OU but not the top-level OU - PolicyId := "GWS.CHAT.3.1v0.3" + PolicyId := ChatId3_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -325,20 +293,12 @@ test_Space_History_Setting_Incorrect_V6 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_Space_History_Setting_Incorrect_V7 if { # Test multiple OUs - PolicyId := "GWS.CHAT.3.1v0.3" + PolicyId := ChatId3_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -367,14 +327,10 @@ test_Space_History_Setting_Incorrect_V7 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
    ", - "
  • Some other OU: Conversation history settings for spaces is set to History is ALWAYS OFF
  • ", - "
  • Test Top-Level OU: Conversation history settings for spaces is set to History is ALWAYS OFF
  • ", - "
" - ]) + failedOU := [{"Name": "Some other OU", + "Value": NonComplianceMessage3_1("ALWAYS OFF")}, + {"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("ALWAYS OFF")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/chat/chat04_test.rego b/scubagoggles/Testing/RegoTests/chat/chat04_test.rego similarity index 80% rename from Testing/RegoTests/chat/chat04_test.rego rename to scubagoggles/Testing/RegoTests/chat/chat04_test.rego index b48e0696..e096e713 100644 --- a/Testing/RegoTests/chat/chat04_test.rego +++ b/scubagoggles/Testing/RegoTests/chat/chat04_test.rego @@ -1,12 +1,16 @@ package chat + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.CHAT.4.1v0.3 +# GWS.CHAT.4.1 #-- test_External_Chat_Sharing_Setting_Correct_V1 if { # Test external chat sharing setting when there's only one event - use case #1 - PolicyId := "GWS.CHAT.4.1v0.3" + PolicyId := ChatId4_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -35,16 +39,12 @@ test_External_Chat_Sharing_Setting_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_External_Chat_Sharing_Setting_Correct_V2 if { # Test external chat sharing setting when there's only one event - use case #2 - PolicyId := "GWS.CHAT.4.1v0.3" + PolicyId := ChatId4_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -73,16 +73,12 @@ test_External_Chat_Sharing_Setting_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_External_Chat_Sharing_Setting_Correct_V3 if { # Test external chat sharing setting when there's multiple events and the most most recent is correct - use case #1 - PolicyId := "GWS.CHAT.4.1v0.3" + PolicyId := ChatId4_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -131,16 +127,12 @@ test_External_Chat_Sharing_Setting_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_External_Chat_Sharing_Setting_Correct_V4 if { # Test external chat sharing setting when there's multiple events and the most most recent is correct - use case #2 - PolicyId := "GWS.CHAT.4.1v0.3" + PolicyId := ChatId4_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -189,16 +181,12 @@ test_External_Chat_Sharing_Setting_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_External_Chat_Sharing_Setting_Incorrect_V1 if { # Test external chat sharing setting when there are no relevant events - PolicyId := "GWS.CHAT.4.1v0.3" + PolicyId := ChatId4_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -217,20 +205,12 @@ test_External_Chat_Sharing_Setting_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_External_Chat_Sharing_Setting_Incorrect_V2 if { # Test external chat sharing setting when there's only one event and it's wrong - use case #1 - PolicyId := "GWS.CHAT.4.1v0.3" + PolicyId := ChatId4_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -259,17 +239,14 @@ test_External_Chat_Sharing_Setting_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "External chat is enabled for all domains
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": "External chat is enabled for all domains"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_External_Chat_Sharing_Setting_Incorrect_V3 if { # Test external chat sharing setting when there are multiple events and the most recent is wrong - use case #1 - PolicyId := "GWS.CHAT.4.1v0.3" + PolicyId := ChatId4_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -318,17 +295,14 @@ test_External_Chat_Sharing_Setting_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "External chat is enabled for all domains
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": "External chat is enabled for all domains"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_External_Chat_Sharing_Setting_Incorrect_V4 if { # Test there's an event for a secondary OU but not the top-level OU - PolicyId := "GWS.CHAT.4.1v0.3" + PolicyId := ChatId4_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -357,20 +331,12 @@ test_External_Chat_Sharing_Setting_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_External_Chat_Sharing_Setting_Incorrect_V5 if { # Test multiple OUs - PolicyId := "GWS.CHAT.4.1v0.3" + PolicyId := ChatId4_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -420,14 +386,10 @@ test_External_Chat_Sharing_Setting_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
    ", - "
  • Some other OU: External chat is enabled for all domains
  • ", - "
  • Test Top-Level OU: External chat is enabled for all domains
  • ", - "
" - ]) + failedOU := [{"Name": "Some other OU", + "Value": "External chat is enabled for all domains"}, + {"Name": "Test Top-Level OU", + "Value": "External chat is enabled for all domains"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/chat/chat05_test.rego b/scubagoggles/Testing/RegoTests/chat/chat05_test.rego similarity index 98% rename from Testing/RegoTests/chat/chat05_test.rego rename to scubagoggles/Testing/RegoTests/chat/chat05_test.rego index da530162..1ff7ddb3 100644 --- a/Testing/RegoTests/chat/chat05_test.rego +++ b/scubagoggles/Testing/RegoTests/chat/chat05_test.rego @@ -2,11 +2,11 @@ package chat import future.keywords # -# GWS.CHAT.5.1v0.3 +# GWS.CHAT.5.1 #-- test_Enable_Correct_V1 if { # Test correct 1 OU - PolicyId := "GWS.CHAT.5.1v0.3" + PolicyId := ChatId5_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -64,7 +64,7 @@ test_Enable_Correct_V1 if { test_Enable_Correct_V2 if { # Test correct 2 OUs, child OU overrides top-level settings - PolicyId := "GWS.CHAT.5.1v0.3" + PolicyId := ChatId5_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -162,7 +162,7 @@ test_Enable_Correct_V2 if { test_Enable_Correct_V3 if { # Test correct 2 OUs, child OU inherits - PolicyId := "GWS.CHAT.5.1v0.3" + PolicyId := ChatId5_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -260,7 +260,7 @@ test_Enable_Correct_V3 if { test_Enable_Incorrect_V1 if { # Test incorrect 1 OU, one conversation type is disabled - PolicyId := "GWS.CHAT.5.1v0.3" + PolicyId := ChatId5_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -323,7 +323,7 @@ test_Enable_Incorrect_V1 if { test_Enable_Incorrect_V2 if { # Test incorrect 1 OU, spaces restricted - PolicyId := "GWS.CHAT.5.1v0.3" + PolicyId := ChatId5_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -386,7 +386,7 @@ test_Enable_Incorrect_V2 if { test_Enable_Incorrect_V3 if { # Test correct 2 OUs, child OU overrides top-level settings - PolicyId := "GWS.CHAT.5.1v0.3" + PolicyId := ChatId5_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -489,7 +489,7 @@ test_Enable_Incorrect_V3 if { test_Enable_Incorrect_V4 if { # Test incorrect 1 OU, one setting is missing - PolicyId := "GWS.CHAT.5.1v0.3" + PolicyId := ChatId5_1 Output := tests with input as { "chat_logs": {"items": [ { @@ -541,11 +541,11 @@ test_Enable_Incorrect_V4 if { #-- # -# GWS.CHAT.5.2v0.3 +# GWS.CHAT.5.2 #-- test_Categories_Correct_V1 if { # Test correct 1 OU - PolicyId := "GWS.CHAT.5.2v0.3" + PolicyId := ChatId5_2 Output := tests with input as { "chat_logs": {"items": [ { @@ -581,7 +581,7 @@ test_Categories_Correct_V1 if { test_Categories_Correct_V2 if { # Test correct, 2 OUs, child OU overrides - PolicyId := "GWS.CHAT.5.2v0.3" + PolicyId := ChatId5_2 Output := tests with input as { "chat_logs": {"items": [ { @@ -635,7 +635,7 @@ test_Categories_Correct_V2 if { test_Categories_Correct_V3 if { # Test correct, 2 OUs, child OU inherits - PolicyId := "GWS.CHAT.5.2v0.3" + PolicyId := ChatId5_2 Output := tests with input as { "chat_logs": {"items": [ { @@ -681,7 +681,7 @@ test_Categories_Correct_V3 if { test_Categories_Incorrect_V1 if { # Test incorrect 1 OU - PolicyId := "GWS.CHAT.5.2v0.3" + PolicyId := ChatId5_2 Output := tests with input as { "chat_logs": {"items": [ { @@ -720,7 +720,7 @@ test_Categories_Incorrect_V1 if { test_Categories_Incorrect_V2 if { # Test incorrect 2 OUs - PolicyId := "GWS.CHAT.5.2v0.3" + PolicyId := ChatId5_2 Output := tests with input as { "chat_logs": {"items": [ { @@ -777,7 +777,7 @@ test_Categories_Incorrect_V2 if { test_Categories_Incorrect_V3 if { # Test incorrect no events - PolicyId := "GWS.CHAT.5.2v0.3" + PolicyId := ChatId5_2 Output := tests with input as { "chat_logs": {"items": [ @@ -796,4 +796,4 @@ test_Categories_Incorrect_V3 if { "While we are unable to determine the state from the logs, the default setting ", "is non-compliant; manual check recommended." ]) -} \ No newline at end of file +} diff --git a/scubagoggles/Testing/RegoTests/chat/chat_api01_test.rego b/scubagoggles/Testing/RegoTests/chat/chat_api01_test.rego new file mode 100644 index 00000000..94a7a9f5 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/chat/chat_api01_test.rego @@ -0,0 +1,73 @@ +package chat + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodChatApi01 := { + "policies": { + "topOU": { + "chat_chat_history": {"allowUserModification": false, + "historyOnByDefault": true}, + "chat_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "chat_chat_history": {"allowUserModification": true, + "historyOnByDefault": false}, + "chat_service_status": {"serviceState": "DISABLED"} + }, + "thirdOU": { + "security_session_controls": { + "webSessionDuration": "700m" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadChatApi01 := { + "policies": { + "topOU": { + "chat_chat_history": {"allowUserModification": true, + "historyOnByDefault": false}, + "chat_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_ChatAPI_History_Correct_1 if { + PolicyId := ChatId1_1 + Output := tests with input as GoodChatApi01 + + PassTestResult(PolicyId, Output) +} + +test_ChatAPI_History_Incorrect_1 if { + PolicyId := ChatId1_1 + Output := tests with input as BadChatApi01 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage1_1("OFF")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ChatAPI_Change_History_Correct_1 if { + PolicyId := ChatId1_2 + Output := tests with input as GoodChatApi01 + + PassTestResult(PolicyId, Output) +} + +test_ChatAPI_Change_History_Incorrect_1 if { + PolicyId := ChatId1_2 + Output := tests with input as BadChatApi01 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage1_2("Yes")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/chat/chat_api02_test.rego b/scubagoggles/Testing/RegoTests/chat/chat_api02_test.rego new file mode 100644 index 00000000..a7116b1b --- /dev/null +++ b/scubagoggles/Testing/RegoTests/chat/chat_api02_test.rego @@ -0,0 +1,57 @@ +package chat + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodChatApi02 := { + "policies": { + "topOU": { + "chat_chat_file_sharing": {"externalFileSharing": "NO_FILES", + "internalFileSharing": "ALL_FILES"}, + "chat_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "chat_chat_file_sharing": {"externalFileSharing": "IMAGES_ONLY", + "internalFileSharing": "ALL_FILES"}, + "chat_service_status": {"serviceState": "DISABLED"} + }, + "thirdOU": { + "security_session_controls": { + "webSessionDuration": "700m" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadChatApi02 := { + "policies": { + "topOU": { + "chat_chat_file_sharing": {"externalFileSharing": "IMAGES_ONLY", + "internalFileSharing": "FILE_SHARING_OPTION_UNSPECIFIED"}, + "chat_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_ChatAPI_External_Sharing_Correct_1 if { + PolicyId := ChatId2_1 + Output := tests with input as GoodChatApi02 + + PassTestResult(PolicyId, Output) +} + +test_ChatAPI_External_Sharing_Incorrect_1 if { + PolicyId := ChatId2_1 + Output := tests with input as BadChatApi02 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage2_1("Images only")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/chat/chat_api03_test.rego b/scubagoggles/Testing/RegoTests/chat/chat_api03_test.rego new file mode 100644 index 00000000..80362e51 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/chat/chat_api03_test.rego @@ -0,0 +1,82 @@ +package chat + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodChatApi03 := { + "policies": { + "topOU": { + "chat_space_history": {"historyState": "DEFAULT_HISTORY_ON"}, + "chat_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "chat_space_history": {"historyState": "HISTORY_ALWAYS_ON"} + }, + "thirdOU": { + "security_session_controls": { + "webSessionDuration": "700m" + } + }, + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadChatApi03 := { + "policies": { + "topOU": { + "chat_space_history": {"historyState": "DEFAULT_HISTORY_OFF"}, + "chat_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadChatApi03a := { + "policies": { + "topOU": { + "chat_space_history": {"historyState": "HISTORY_ALWAYS_ON"}, + "chat_service_status": {"serviceState": "ENABLED"} + }, + "secondOU": { + "chat_space_history": {"historyState": "HISTORY_ALWAYS_OFF"} + }, + "thirdOU": { + "chat_space_history": {"historyState": "HISTORY_STATE_UNSPECIFIED"} + }, + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_ChatAPI_Space_History_Correct_1 if { + PolicyId := ChatId3_1 + Output := tests with input as GoodChatApi03 + + PassTestResult(PolicyId, Output) +} + +test_ChatAPI_Space_History_Incorrect_1 if { + PolicyId := ChatId3_1 + Output := tests with input as BadChatApi03 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage3_1("OFF by default")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ChatAPI_Space_History_Incorrect_2 if { + PolicyId := ChatId3_1 + Output := tests with input as BadChatApi03a + + failedOU := [{"Name": "secondOU", + "Value": NonComplianceMessage3_1("ALWAYS OFF")}, + {"Name": "thirdOU", + "Value": NonComplianceMessage3_1("Unspecified")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/chat/chat_api04_test.rego b/scubagoggles/Testing/RegoTests/chat/chat_api04_test.rego new file mode 100644 index 00000000..4099d4a1 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/chat/chat_api04_test.rego @@ -0,0 +1,91 @@ +package chat + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodChatApi04 := { + "policies": { + "topOU": { + "chat_external_chat_restriction": { + "allowExternalChat": false, + "externalChatRestriction": "TRUSTED_DOMAINS"}, + "chat_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "chat_external_chat_restriction": { + "allowExternalChat": true, + "externalChatRestriction": "TRUSTED_DOMAINS"} + }, + "thirdOU": { + "chat_external_chat_restriction": { + "allowExternalChat": true, + "externalChatRestriction": "NO_RESTRICTION"}, + "chat_service_status": {"serviceState": "DISABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadChatApi04 := { + "policies": { + "topOU": { + "chat_external_chat_restriction": { + "allowExternalChat": true, + "externalChatRestriction": "NO_RESTRICTION"}, + "chat_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadChatApi04a := { + "policies": { + "topOU": { + "chat_external_chat_restriction": { + "allowExternalChat": true, + "externalChatRestriction": "TRUSTED_DOMAINS"}, + "chat_service_status": {"serviceState": "ENABLED"} + }, + "secondOU": { + "chat_external_chat_restriction": { + "allowExternalChat": true, + "externalChatRestriction": "RESTRICTION_UNSPECIFIED"}, + }, + "thirdOU": { + "chat_space_history": {"historyState": "HISTORY_STATE_UNSPECIFIED"} + }, + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_ChatAPI_External_Messages_Correct_1 if { + PolicyId := ChatId4_1 + Output := tests with input as GoodChatApi04 + + PassTestResult(PolicyId, Output) +} + +test_ChatAPI_External_Messages_Incorrect_1 if { + PolicyId := ChatId4_1 + Output := tests with input as BadChatApi04 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage4_1("all domains")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ChatAPI_External_Messages_Incorrect_2 if { + PolicyId := ChatId4_1 + Output := tests with input as BadChatApi04a + + failedOU := [{"Name": "secondOU", + "Value": NonComplianceMessage4_1("Unspecified")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/Testing/RegoTests/classroom/classroom01_test.rego b/scubagoggles/Testing/RegoTests/classroom/classroom01_test.rego similarity index 70% rename from Testing/RegoTests/classroom/classroom01_test.rego rename to scubagoggles/Testing/RegoTests/classroom/classroom01_test.rego index 52ad55b9..c73695f1 100644 --- a/Testing/RegoTests/classroom/classroom01_test.rego +++ b/scubagoggles/Testing/RegoTests/classroom/classroom01_test.rego @@ -1,13 +1,16 @@ package classroom import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.FailTestNoEvent +import data.utils.PassTestResult # -# GWS.CLASSROOM.1.1v0.3 +# GWS.CLASSROOM.1.1 #-- test_JoinClassroom_Correct_V1 if { # Test enforcing who can join classroom when there's only one event - PolicyId := "GWS.CLASSROOM.1.1v0.3" + PolicyId := ClassroomId1_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -27,17 +30,13 @@ test_JoinClassroom_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_JoinClassroom_Correct_V2 if { # Test enforcing MFA when there's multiple events, with the chronological latest # correct but not last in json list - PolicyId := "GWS.CLASSROOM.1.1v0.3" + PolicyId := ClassroomId1_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -68,16 +67,12 @@ test_JoinClassroom_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_JoinClassroom_Incorrect_V1 if { # Test enforcing who can join classroom when there's only one event and it's wrong - PolicyId := "GWS.CLASSROOM.1.1v0.3" + PolicyId := ClassroomId1_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -97,20 +92,15 @@ test_JoinClassroom_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Who can join classes in your domain is set to Users in allowlisted domains
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_1("Users in allowlisted domains")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_JoinClassroom_Incorrect_V2 if { # Test who can join classroom when there's multiple events, with the chronological latest # incorrect but not last in json list - PolicyId := "GWS.CLASSROOM.1.1v0.3" + PolicyId := ClassroomId1_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -141,20 +131,15 @@ test_JoinClassroom_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Who can join classes in your domain is set to Users in allowlisted domains
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_1("Users in allowlisted domains")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_JoinClassroom_Incorrect_V3 if { # Test enforcing who can join classroom when there no applicable event - PolicyId := "GWS.CLASSROOM.1.1v0.3" + PolicyId := ClassroomId1_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -173,26 +158,17 @@ test_JoinClassroom_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } #-- - # -# GWS.CLASSROOM.1.2v0.3 +# GWS.CLASSROOM.1.2 #-- test_WhichClasses_Correct_V1 if { # Test enforcing which classes users can join when there's only one event - PolicyId := "GWS.CLASSROOM.1.2v0.3" + PolicyId := ClassroomId1_2 Output := tests with input as { "classroom_logs": {"items": [ { @@ -212,17 +188,13 @@ test_WhichClasses_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_WhichClasses_Correct_V2 if { # Test enforcing which classes users can join when there's multiple events, with the chronological latest # correct but not last in json list - PolicyId := "GWS.CLASSROOM.1.2v0.3" + PolicyId := ClassroomId1_2 Output := tests with input as { "classroom_logs": {"items": [ { @@ -253,16 +225,12 @@ test_WhichClasses_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_WhichClasses_Incorrect_V1 if { # Test enforcing which classes users can join when there's only one event and it's wrong - PolicyId := "GWS.CLASSROOM.1.2v0.3" + PolicyId := ClassroomId1_2 Output := tests with input as { "classroom_logs": {"items": [ { @@ -282,20 +250,15 @@ test_WhichClasses_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Which classes can users in your domain join is set to Classes in allowlisted domains
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_2("Classes in allowlisted domains")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_WhichClasses_Incorrect_V2 if { # Test enforcing which classes users can join when there's multiple events, with the chronological latest # incorrect but not last in json list - PolicyId := "GWS.CLASSROOM.1.2v0.3" + PolicyId := ClassroomId1_2 Output := tests with input as { "classroom_logs": {"items": [ { @@ -325,20 +288,14 @@ test_WhichClasses_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Which classes can users in your domain join is set to Classes in allowlisted domains
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_2("Classes in allowlisted domains")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } - test_WhichClasses_Incorrect_V3 if { # Test enforcing which classes users can join when there no applicable event - PolicyId := "GWS.CLASSROOM.1.2v0.3" + PolicyId := ClassroomId1_2 Output := tests with input as { "classroom_logs": {"items": [ { @@ -357,13 +314,5 @@ test_WhichClasses_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) -} \ No newline at end of file + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) +} diff --git a/Testing/RegoTests/classroom/classroom02_test.rego b/scubagoggles/Testing/RegoTests/classroom/classroom02_test.rego similarity index 72% rename from Testing/RegoTests/classroom/classroom02_test.rego rename to scubagoggles/Testing/RegoTests/classroom/classroom02_test.rego index eb54492f..f02229ca 100644 --- a/Testing/RegoTests/classroom/classroom02_test.rego +++ b/scubagoggles/Testing/RegoTests/classroom/classroom02_test.rego @@ -1,13 +1,15 @@ package classroom import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.FailTestNoEvent +import data.utils.PassTestResult - -# GWS.CLASSROOM.2.1v0.3 +# GWS.CLASSROOM.2.1 #-- test_APIAccess_Correct_V1 if { # Test API Access is disabled when there's only one event - PolicyId := "GWS.CLASSROOM.2.1v0.3" + PolicyId := ClassroomId2_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -27,17 +29,13 @@ test_APIAccess_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_APIAccess_Correct_V2 if { # Test enforcing API Access is disabled when there's multiple events, with the chronological latest # correct but not last in json list - PolicyId := "GWS.CLASSROOM.2.1v0.3" + PolicyId := ClassroomId2_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -68,16 +66,12 @@ test_APIAccess_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_APIAccess_Correct_V3 if { # Test enforcing API Access is disabled is correct when there are events in multiple OUs - PolicyId := "GWS.CLASSROOM.2.1v0.3" + PolicyId := ClassroomId2_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -106,16 +100,12 @@ test_APIAccess_Correct_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_APIAccess_Correct_V4 if { # Test API Access is disabled when set to inherit from parent - PolicyId := "GWS.CLASSROOM.2.1v0.3" + PolicyId := ClassroomId2_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -154,16 +144,12 @@ test_APIAccess_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_APIAccess_Incorrect_V1 if { # Test API Access is disabled when there's only one event and it's wrong - PolicyId := "GWS.CLASSROOM.2.1v0.3" + PolicyId := ClassroomId2_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -183,20 +169,15 @@ test_APIAccess_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Data access is set to ON
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1("true"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_APIAccess_Incorrect_V2 if { # Test API Access is disabled when there's multiple events, with the chronological latest # incorrect but not last in json list - PolicyId := "GWS.CLASSROOM.2.1v0.3" + PolicyId := ClassroomId2_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -227,20 +208,14 @@ test_APIAccess_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Data access is set to ON
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1("true"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } - test_APIAccess_Incorrect_V3 if { # Test API Access is disabled when there no applicable event - PolicyId := "GWS.CLASSROOM.2.1v0.3" + PolicyId := ClassroomId2_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -260,19 +235,12 @@ test_APIAccess_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } + test_APIAccess_Incorrect_V4 if { # Test allow API Access is disabled when there are multiple OU and a secondary OU is wrong - PolicyId := "GWS.CLASSROOM.2.1v0.3" + PolicyId := ClassroomId2_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -301,20 +269,15 @@ test_APIAccess_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Secondary OU: ", - "Data access is set to ON
" - ]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1("true"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- test_APIAccess_Incorrect_V5 if { # Test API Access is disabled when the primary OU is missing but a different one is present - PolicyId := "GWS.CLASSROOM.2.1v0.3" + PolicyId := ClassroomId2_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -333,20 +296,12 @@ test_APIAccess_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_APIAccess_Incorrect_V6 if { # Test API Access is disabled access when there's only one event and it's wrong - PolicyId := "GWS.CLASSROOM.2.1v0.3" + PolicyId := ClassroomId2_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -365,19 +320,14 @@ test_APIAccess_Incorrect_V6 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Data access is set to SAME_DOMAIN
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1("SAME_DOMAIN")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_APIAccess_Incorrect_V7 if { # Test API Access is disabled when there are multiple events and the most recent is wrong - PolicyId := "GWS.CLASSROOM.2.1v0.3" + PolicyId := ClassroomId2_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -406,19 +356,14 @@ test_APIAccess_Incorrect_V7 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Data access is set to SAME_DOMAIN
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1("SAME_DOMAIN")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_APIAccess_Incorrect_V8 if { # Test API Access is disabled when there are multiple OU and a secondary OU is wrong - PolicyId := "GWS.CLASSROOM.2.1v0.3" + PolicyId := ClassroomId2_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -447,20 +392,15 @@ test_APIAccess_Incorrect_V8 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Secondary OU: ", - "Data access is set to SAME_DOMAIN
" - ]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage2_1("SAME_DOMAIN")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- test_APIAccess_Incorrect_V9 if { # Test API Access is disabled when the primary OU is missing but a different one is present - PolicyId := "GWS.CLASSROOM.2.1v0.3" + PolicyId := ClassroomId2_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -479,14 +419,6 @@ test_APIAccess_Incorrect_V9 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } #-- diff --git a/Testing/RegoTests/classroom/classroom03_test.rego b/scubagoggles/Testing/RegoTests/classroom/classroom03_test.rego similarity index 73% rename from Testing/RegoTests/classroom/classroom03_test.rego rename to scubagoggles/Testing/RegoTests/classroom/classroom03_test.rego index fa638df4..c4c19066 100644 --- a/Testing/RegoTests/classroom/classroom03_test.rego +++ b/scubagoggles/Testing/RegoTests/classroom/classroom03_test.rego @@ -1,13 +1,15 @@ package classroom import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.FailTestNoEvent +import data.utils.PassTestResult - -# GWS.CLASSROOM.3.1v0.3 +# GWS.CLASSROOM.3.1 #-- test_CleverRosterDisabled_Correct_V1 if { # Test Clever Roster is disabled when there's only one event - PolicyId := "GWS.CLASSROOM.3.1v0.3" + PolicyId := ClassroomId3_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -27,17 +29,13 @@ test_CleverRosterDisabled_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_CleverRosterDisabled_Correct_V2 if { # Test enforcing Clever Roster is disabled when there's multiple events, with the chronological latest # correct but not last in json list - PolicyId := "GWS.CLASSROOM.3.1v0.3" + PolicyId := ClassroomId3_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -68,16 +66,12 @@ test_CleverRosterDisabled_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_CleverRosterDisabled_Correct_V3 if { # Test enforcing Clever Roster is disabled is correct when there are events in multiple OUs - PolicyId := "GWS.CLASSROOM.3.1v0.3" + PolicyId := ClassroomId3_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -106,16 +100,12 @@ test_CleverRosterDisabled_Correct_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_CleverRosterDisabled_Correct_V4 if { # Test Clever Roster is disabled when set to inherit from parent - PolicyId := "GWS.CLASSROOM.3.1v0.3" + PolicyId := ClassroomId3_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -154,16 +144,12 @@ test_CleverRosterDisabled_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_CleverRosterDisabled_Incorrect_V1 if { # Test Clever Roster is disabled when there's only one event and it's wrong - PolicyId := "GWS.CLASSROOM.3.1v0.3" + PolicyId := ClassroomId3_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -183,20 +169,15 @@ test_CleverRosterDisabled_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Roster import is set to ON - CLEVER
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("ON - CLEVER")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_CleverRosterDisabled_Incorrect_V2 if { # Test Clever Roster is disabled when there's multiple events, with the chronological latest # incorrect but not last in json list - PolicyId := "GWS.CLASSROOM.3.1v0.3" + PolicyId := ClassroomId3_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -227,20 +208,15 @@ test_CleverRosterDisabled_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Roster import is set to ON - CLEVER
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("ON - CLEVER")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_CleverRosterDisabled_Incorrect_V3 if { # Test Clever Roster is disabled when there no applicable event - PolicyId := "GWS.CLASSROOM.3.1v0.3" + PolicyId := ClassroomId3_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -260,19 +236,12 @@ test_CleverRosterDisabled_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } + test_CleverRosterDisabled_Incorrect_V4 if { # Test allow Clever Roster is disabled when there are multiple OU and a secondary OU is wrong - PolicyId := "GWS.CLASSROOM.3.1v0.3" + PolicyId := ClassroomId3_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -301,20 +270,15 @@ test_CleverRosterDisabled_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Secondary OU: ", - "Roster import is set to ON - CLEVER
" - ]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage3_1("ON - CLEVER")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- test_CleverRosterDisabled_Incorrect_V5 if { # Test Clever Roster is disabled when the primary OU is missing but a different one is present - PolicyId := "GWS.CLASSROOM.3.1v0.3" + PolicyId := ClassroomId3_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -333,20 +297,12 @@ test_CleverRosterDisabled_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_CleverRosterDisabled_Incorrect_V6 if { # Test Clever Roster is disabled access when there's only one event and it's wrong - PolicyId := "GWS.CLASSROOM.3.1v0.3" + PolicyId := ClassroomId3_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -365,19 +321,14 @@ test_CleverRosterDisabled_Incorrect_V6 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Roster import is set to SAME_DOMAIN
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("SAME_DOMAIN")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_CleverRosterDisabled_Incorrect_V7 if { # Test Clever Roster is disabled when there are multiple events and the most recent is wrong - PolicyId := "GWS.CLASSROOM.3.1v0.3" + PolicyId := ClassroomId3_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -406,19 +357,14 @@ test_CleverRosterDisabled_Incorrect_V7 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Roster import is set to SAME_DOMAIN
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("SAME_DOMAIN")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_CleverRosterDisabled_Incorrect_V8 if { # Test Clever Roster is disabled when there are multiple OU and a secondary OU is wrong - PolicyId := "GWS.CLASSROOM.3.1v0.3" + PolicyId := ClassroomId3_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -447,20 +393,15 @@ test_CleverRosterDisabled_Incorrect_V8 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Secondary OU: ", - "Roster import is set to SAME_DOMAIN
" - ]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage3_1("SAME_DOMAIN")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- test_CleverRosterDisabled_Incorrect_V9 if { # Test Clever Roster is disabled when the primary OU is missing but a different one is present - PolicyId := "GWS.CLASSROOM.3.1v0.3" + PolicyId := ClassroomId3_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -479,14 +420,6 @@ test_CleverRosterDisabled_Incorrect_V9 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } #-- diff --git a/Testing/RegoTests/classroom/classroom04_test.rego b/scubagoggles/Testing/RegoTests/classroom/classroom04_test.rego similarity index 73% rename from Testing/RegoTests/classroom/classroom04_test.rego rename to scubagoggles/Testing/RegoTests/classroom/classroom04_test.rego index 1a0ed1b8..299e8203 100644 --- a/Testing/RegoTests/classroom/classroom04_test.rego +++ b/scubagoggles/Testing/RegoTests/classroom/classroom04_test.rego @@ -1,13 +1,16 @@ package classroom import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.FailTestNoEvent +import data.utils.PassTestResult # -# GWS.CLASSROOM.4.1v0.3 +# GWS.CLASSROOM.4.1 #-- test_UnenrollStudents_Correct_V1 if { # Test only teachers can unenroll students when there's only one event - PolicyId := "GWS.CLASSROOM.4.1v0.3" + PolicyId := ClassroomId4_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -27,17 +30,13 @@ test_UnenrollStudents_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_UnenrollStudents_Correct_V2 if { # Test enforcing only teachers can unenroll students when there's multiple events, with the chronological latest # correct but not last in json list - PolicyId := "GWS.CLASSROOM.4.1v0.3" + PolicyId := ClassroomId4_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -68,16 +67,12 @@ test_UnenrollStudents_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_UnenrollStudents_Correct_V3 if { # Test enforcing only teachers can unenroll students is correct when there are events in multiple OUs - PolicyId := "GWS.CLASSROOM.4.1v0.3" + PolicyId := ClassroomId4_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -106,16 +101,12 @@ test_UnenrollStudents_Correct_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_UnenrollStudents_Correct_V4 if { # Test only teachers can unenroll students when set to inherit from parent - PolicyId := "GWS.CLASSROOM.4.1v0.3" + PolicyId := ClassroomId4_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -154,16 +145,12 @@ test_UnenrollStudents_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_UnenrollStudents_Incorrect_V1 if { # Test only teachers can unenroll students when there's only one event and it's wrong - PolicyId := "GWS.CLASSROOM.4.1v0.3" + PolicyId := ClassroomId4_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -183,20 +170,15 @@ test_UnenrollStudents_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Who can unenroll students from classes is set to Students and teachers
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1("Students and teachers")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_UnenrollStudents_Incorrect_V2 if { # Test only teachers can unenroll students when there's multiple events, with the chronological latest # incorrect but not last in json list - PolicyId := "GWS.CLASSROOM.4.1v0.3" + PolicyId := ClassroomId4_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -227,20 +209,15 @@ test_UnenrollStudents_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Who can unenroll students from classes is set to Students and teachers
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1("Students and teachers")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_UnenrollStudents_Incorrect_V3 if { # Test only teachers can unenroll students when there no applicable event - PolicyId := "GWS.CLASSROOM.4.1v0.3" + PolicyId := ClassroomId4_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -260,19 +237,12 @@ test_UnenrollStudents_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } + test_UnenrollStudents_Incorrect_V4 if { # Test allow only teachers can unenroll students when there are multiple OU and a secondary OU is wrong - PolicyId := "GWS.CLASSROOM.4.1v0.3" + PolicyId := ClassroomId4_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -301,20 +271,15 @@ test_UnenrollStudents_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Secondary OU: ", - "Who can unenroll students from classes is set to Students and teachers
" - ]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage4_1("Students and teachers")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- test_UnenrollStudents_Incorrect_V5 if { # Test only teachers can unenroll students when the primary OU is missing but a different one is present - PolicyId := "GWS.CLASSROOM.4.1v0.3" + PolicyId := ClassroomId4_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -333,20 +298,12 @@ test_UnenrollStudents_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_UnenrollStudents_Incorrect_V6 if { # Test only teachers can unenroll students access when there's only one event and it's wrong - PolicyId := "GWS.CLASSROOM.4.1v0.3" + PolicyId := ClassroomId4_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -365,19 +322,14 @@ test_UnenrollStudents_Incorrect_V6 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Who can unenroll students from classes is set to SAME_DOMAIN
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1("SAME_DOMAIN")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_UnenrollStudents_Incorrect_V7 if { # Test only teachers can unenroll students when there are multiple events and the most recent is wrong - PolicyId := "GWS.CLASSROOM.4.1v0.3" + PolicyId := ClassroomId4_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -406,19 +358,14 @@ test_UnenrollStudents_Incorrect_V7 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Who can unenroll students from classes is set to SAME_DOMAIN
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1("SAME_DOMAIN")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_UnenrollStudents_Incorrect_V8 if { # Test only teachers can unenroll students when there are multiple OU and a secondary OU is wrong - PolicyId := "GWS.CLASSROOM.4.1v0.3" + PolicyId := ClassroomId4_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -447,20 +394,15 @@ test_UnenrollStudents_Incorrect_V8 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Secondary OU: ", - "Who can unenroll students from classes is set to SAME_DOMAIN
" - ]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage4_1("SAME_DOMAIN")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- test_UnenrollStudents_Incorrect_V9 if { # Test only teachers can unenroll students when the primary OU is missing but a different one is present - PolicyId := "GWS.CLASSROOM.4.1v0.3" + PolicyId := ClassroomId4_1 Output := tests with input as { "classroom_logs": {"items": [ { @@ -479,14 +421,6 @@ test_UnenrollStudents_Incorrect_V9 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } #-- diff --git a/Testing/RegoTests/classroom/classroom05_test.rego b/scubagoggles/Testing/RegoTests/classroom/classroom05_test.rego similarity index 69% rename from Testing/RegoTests/classroom/classroom05_test.rego rename to scubagoggles/Testing/RegoTests/classroom/classroom05_test.rego index e71cfb05..f1c4299e 100644 --- a/Testing/RegoTests/classroom/classroom05_test.rego +++ b/scubagoggles/Testing/RegoTests/classroom/classroom05_test.rego @@ -1,188 +1,164 @@ -package classroom -import future.keywords - -# -# GWS.CLASSROOM.5.1v0.3 -#-- - -test_ClassroomCreation_Correct_V1 if { - # Test only teachers can unenroll students when there's only one event - PolicyId := "GWS.CLASSROOM.5.1v0.3" - Output := tests with input as { - "classroom_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - {"name":"SETTING_NAME", - "value": "TeacherPermissionsSettingProto who_can_create_class"}, - {"name": "NEW_VALUE", "value": "3"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." -} - -test_ClassroomCreation_Correct_V2 if { - # Test when there's multiple events, with the chronological latest - # correct but not last in json list - PolicyId := "GWS.CLASSROOM.5.1v0.3" - Output := tests with input as { - "classroom_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - {"name":"SETTING_NAME", - "value": "TeacherPermissionsSettingProto who_can_create_class"}, - {"name": "NEW_VALUE", "value": "3"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - }, - { - "id": {"time": "2021-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - {"name":"SETTING_NAME", - "value": "TeacherPermissionsSettingProto who_can_create_class"}, - {"name": "NEW_VALUE", "value": "2"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." -} - -# No tests for multiple OUs, inheritance, groups, etc as this setting can't be controlled at the OU or group level - -test_ClassroomCreation_Incorrect_V1 if { - # Test when there's only one event and it's wrong - PolicyId := "GWS.CLASSROOM.5.1v0.3" - Output := tests with input as { - "classroom_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - {"name":"SETTING_NAME", - "value": "TeacherPermissionsSettingProto who_can_create_class"}, - {"name": "NEW_VALUE", "value": "1"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Who can create classes is set to anyone in this domain
" - ]) -} - -test_ClassroomCreation_Incorrect_V2 if { - # Test when there's multiple events, with the chronological latest - # incorrect but not last in json list - PolicyId := "GWS.CLASSROOM.5.1v0.3" - Output := tests with input as { - "classroom_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - {"name":"SETTING_NAME", - "value": "TeacherPermissionsSettingProto who_can_create_class"}, - {"name": "NEW_VALUE", "value": "2"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - }, - { - "id": {"time": "2021-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - {"name":"SETTING_NAME", - "value": "TeacherPermissionsSettingProto who_can_create_class"}, - {"name": "NEW_VALUE", "value": "3"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Who can create classes is set to all pending and verified teachers
" - ]) -} - - -test_ClassroomCreation_Incorrect_V3 if { - # Test when there no applicable event - PolicyId := "GWS.CLASSROOM.5.1v0.3" - Output := tests with input as { - "classroom_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - {"name":"SETTING_NAME", - "value": "something else"}, - {"name": "NEW_VALUE", "value": "false"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) -} +package classroom +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.FailTestNoEvent +import data.utils.PassTestResult + +# +# GWS.CLASSROOM.5.1 +#-- + +test_ClassroomCreation_Correct_V1 if { + # Test only teachers can unenroll students when there's only one event + PolicyId := ClassroomId5_1 + Output := tests with input as { + "classroom_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + {"name":"SETTING_NAME", + "value": "TeacherPermissionsSettingProto who_can_create_class"}, + {"name": "NEW_VALUE", "value": "3"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + PassTestResult(PolicyId, Output) +} + +test_ClassroomCreation_Correct_V2 if { + # Test when there's multiple events, with the chronological latest + # correct but not last in json list + PolicyId := ClassroomId5_1 + Output := tests with input as { + "classroom_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + {"name":"SETTING_NAME", + "value": "TeacherPermissionsSettingProto who_can_create_class"}, + {"name": "NEW_VALUE", "value": "3"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + }, + { + "id": {"time": "2021-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + {"name":"SETTING_NAME", + "value": "TeacherPermissionsSettingProto who_can_create_class"}, + {"name": "NEW_VALUE", "value": "2"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + PassTestResult(PolicyId, Output) +} + +# No tests for multiple OUs, inheritance, groups, etc as this setting can't be controlled at the OU or group level + +test_ClassroomCreation_Incorrect_V1 if { + # Test when there's only one event and it's wrong + PolicyId := ClassroomId5_1 + Output := tests with input as { + "classroom_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + {"name":"SETTING_NAME", + "value": "TeacherPermissionsSettingProto who_can_create_class"}, + {"name": "NEW_VALUE", "value": "1"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_1("anyone in this domain")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ClassroomCreation_Incorrect_V2 if { + # Test when there's multiple events, with the chronological latest + # incorrect but not last in json list + PolicyId := ClassroomId5_1 + Output := tests with input as { + "classroom_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + {"name":"SETTING_NAME", + "value": "TeacherPermissionsSettingProto who_can_create_class"}, + {"name": "NEW_VALUE", "value": "2"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + }, + { + "id": {"time": "2021-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + {"name":"SETTING_NAME", + "value": "TeacherPermissionsSettingProto who_can_create_class"}, + {"name": "NEW_VALUE", "value": "3"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_1("all pending and verified teachers")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ClassroomCreation_Incorrect_V3 if { + # Test when there no applicable event + PolicyId := ClassroomId5_1 + Output := tests with input as { + "classroom_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + {"name":"SETTING_NAME", + "value": "something else"}, + {"name": "NEW_VALUE", "value": "false"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} diff --git a/scubagoggles/Testing/RegoTests/classroom/classroom_api01_test.rego b/scubagoggles/Testing/RegoTests/classroom/classroom_api01_test.rego new file mode 100644 index 00000000..d881bbd3 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/classroom/classroom_api01_test.rego @@ -0,0 +1,90 @@ +package classroom + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodClassroomApi01 := { + "policies": { + "topOU": { + "classroom_class_membership": { + "whoCanJoinClasses": "ANYONE_IN_DOMAIN", + "whichClassesCanUsersJoin": "CLASSES_IN_DOMAIN" + }, + "classroom_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + }, + "thirdOU": { + "security_session_controls": { + "webSessionDuration": "700m" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadClassroomApi01 := { + "policies": { + "topOU": { + "classroom_class_membership": { + "whoCanJoinClasses": "ANYONE_IN_DOMAIN", + "whichClassesCanUsersJoin": "CLASSES_IN_ALLOWLISTED_DOMAINS" + }, + "classroom_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + }, + "thirdOU": { + "classroom_class_membership": { + "whoCanJoinClasses": "ANY_GOOGLE_WORKSPACE_USER", + "whichClassesCanUsersJoin": "CLASSES_IN_ALLOWLISTED_DOMAINS" + }, + }, + "fourthOU": { + "security_session_controls": { + "webSessionDuration": "12H" + }, + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_ClassroomAPI_JoinClassroom_Correct_1 if { + PolicyId := ClassroomId1_1 + Output := tests with input as GoodClassroomApi01 + + PassTestResult(PolicyId, Output) +} + +test_ClassroomAPI_JoinClassroom_Incorrect_1 if { + PolicyId := ClassroomId1_1 + Output := tests with input as BadClassroomApi01 + + failedOU := [{"Name": "thirdOU", + "Value": NonComplianceMessage1_1("Any Google Workspace user")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ClassroomAPI_JoinClasses_Correct_1 if { + PolicyId := ClassroomId1_2 + Output := tests with input as GoodClassroomApi01 + + PassTestResult(PolicyId, Output) +} + +test_ClassroomAPI_JoinClasses_Incorrect_1 if { + PolicyId := ClassroomId1_2 + Output := tests with input as BadClassroomApi01 + + whichClasses := "Classes in allowlisted domains" + failedOU := [{"Name": "thirdOU", + "Value": NonComplianceMessage1_2(whichClasses)}, + {"Name": "topOU", + "Value": NonComplianceMessage1_2(whichClasses)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/classroom/classroom_api02_test.rego b/scubagoggles/Testing/RegoTests/classroom/classroom_api02_test.rego new file mode 100644 index 00000000..eee2addf --- /dev/null +++ b/scubagoggles/Testing/RegoTests/classroom/classroom_api02_test.rego @@ -0,0 +1,62 @@ +package classroom + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodClassroomApi02 := { + "policies": { + "topOU": { + "classroom_api_data_access": { + "enableApiAccess": false + }, + "classroom_service_status": {"serviceState": "ENABLED"} + }, + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadClassroomApi02 := { + "policies": { + "topOU": { + "classroom_api_data_access": { + "enableApiAccess": false + }, + "classroom_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + }, + "thirdOU": { + "classroom_class_membership": { + "whoCanJoinClasses": "ANY_GOOGLE_WORKSPACE_USER", + "whichClassesCanUsersJoin": "CLASSES_IN_ALLOWLISTED_DOMAINS" + } + }, + "fourthOU": { + "classroom_api_data_access": { + "enableApiAccess": true + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_ClassroomAPI_DataAccess_Correct_1 if { + PolicyId := ClassroomId2_1 + Output := tests with input as GoodClassroomApi02 + + PassTestResult(PolicyId, Output) +} + +test_ClassroomAPI_DataAccess_Incorrect_1 if { + PolicyId := ClassroomId2_1 + Output := tests with input as BadClassroomApi02 + + failedOU := [{"Name": "fourthOU", + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1(true))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/classroom/classroom_api03_test.rego b/scubagoggles/Testing/RegoTests/classroom/classroom_api03_test.rego new file mode 100644 index 00000000..6feb29bd --- /dev/null +++ b/scubagoggles/Testing/RegoTests/classroom/classroom_api03_test.rego @@ -0,0 +1,65 @@ +package classroom + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodClassroomApi03 := { + "policies": { + "topOU": { + "classroom_roster_import": { + "rosterImportOption": "OFF" + }, + "classroom_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadClassroomApi03 := { + "policies": { + "topOU": { + "classroom_roster_import": { + "rosterImportOption": "OFF" + }, + "classroom_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + }, + "thirdOU": { + "classroom_class_membership": { + "whoCanJoinClasses": "ANY_GOOGLE_WORKSPACE_USER", + "whichClassesCanUsersJoin": "CLASSES_IN_ALLOWLISTED_DOMAINS" + } + }, + "fourthOU": { + "classroom_api_data_access": { + "enableApiAccess": true + }, + "classroom_roster_import": { + "rosterImportOption": "ON_CLEVER" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_ClassroomAPI_RosterImport_Correct_1 if { + PolicyId := ClassroomId3_1 + Output := tests with input as GoodClassroomApi03 + + PassTestResult(PolicyId, Output) +} + +test_ClassroomAPI_DataAccess_Incorrect_1 if { + PolicyId := ClassroomId3_1 + Output := tests with input as BadClassroomApi03 + + failedOU := [{"Name": "fourthOU", + "Value": NonComplianceMessage3_1("ON - CLEVER")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/classroom/classroom_api04_test.rego b/scubagoggles/Testing/RegoTests/classroom/classroom_api04_test.rego new file mode 100644 index 00000000..2a0fac5b --- /dev/null +++ b/scubagoggles/Testing/RegoTests/classroom/classroom_api04_test.rego @@ -0,0 +1,65 @@ +package classroom + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodClassroomApi04 := { + "policies": { + "topOU": { + "classroom_student_unenrollment": { + "whoCanUnenrollStudents": "TEACHERS_ONLY" + } + }, + "classroom_service_status": {"serviceState": "ENABLED"} + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadClassroomApi04 := { + "policies": { + "topOU": { + "classroom_student_unenrollment": { + "whoCanUnenrollStudents": "TEACHERS_ONLY" + }, + "classroom_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + }, + "thirdOU": { + "classroom_class_membership": { + "whoCanJoinClasses": "ANY_GOOGLE_WORKSPACE_USER", + "whichClassesCanUsersJoin": "CLASSES_IN_ALLOWLISTED_DOMAINS" + }, + "classroom_student_unenrollment": { + "whoCanUnenrollStudents": "STUDENTS_AND_TEACHERS" + } + }, + "fourthOU": { + "classroom_roster_import": { + "rosterImportOption": "ON_CLEVER" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_ClassroomAPI_Unenrollment_Correct_1 if { + PolicyId := ClassroomId4_1 + Output := tests with input as GoodClassroomApi04 + + PassTestResult(PolicyId, Output) +} + +test_ClassroomAPI_Unenrollment_Incorrect_1 if { + PolicyId := ClassroomId4_1 + Output := tests with input as BadClassroomApi04 + + failedOU := [{"Name": "thirdOU", + "Value": NonComplianceMessage4_1("Students and teachers")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/classroom/classroom_api05_test.rego b/scubagoggles/Testing/RegoTests/classroom/classroom_api05_test.rego new file mode 100644 index 00000000..64dc5f43 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/classroom/classroom_api05_test.rego @@ -0,0 +1,65 @@ +package classroom + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodClassroomApi05 := { + "policies": { + "topOU": { + "classroom_teacher_permissions": { + "whoCanCreateClasses": "VERIFIED_TEACHERS_ONLY" + }, + "classroom_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadClassroomApi05 := { + "policies": { + "topOU": { + "classroom_teacher_permissions": { + "whoCanCreateClasses": "VERIFIED_TEACHERS_ONLY" + }, + "classroom_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + }, + "thirdOU": { + "classroom_class_membership": { + "whoCanJoinClasses": "ANY_GOOGLE_WORKSPACE_USER", + "whichClassesCanUsersJoin": "CLASSES_IN_ALLOWLISTED_DOMAINS" + }, + "classroom_student_unenrollment": { + "whoCanUnenrollStudents": "STUDENTS_AND_TEACHERS" + } + }, + "fourthOU": { + "classroom_teacher_permissions": { + "whoCanCreateClasses": "ALL_PENDING_AND_VERIFIED_TEACHERS" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_ClassroomAPI_Unenrollment_Correct_1 if { + PolicyId := ClassroomId5_1 + Output := tests with input as GoodClassroomApi05 + + PassTestResult(PolicyId, Output) +} + +test_ClassroomAPI_Unenrollment_Incorrect_1 if { + PolicyId := ClassroomId5_1 + Output := tests with input as BadClassroomApi05 + + failedOU := [{"Name": "fourthOU", + "Value": NonComplianceMessage5_1("all pending and verified teachers")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/Testing/RegoTests/commoncontrols/commoncontrols01_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols01_test.rego similarity index 96% rename from Testing/RegoTests/commoncontrols/commoncontrols01_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols01_test.rego index 68ad59ca..c689f1b5 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols01_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols01_test.rego @@ -2,11 +2,11 @@ package commoncontrols import future.keywords # -# GWS.COMMONCONTROLS.1.1v0.3 +# GWS.COMMONCONTROLS.1.1 #-- test_EnforceMFA_Correct_V1 if { # Test enforcing MFA when there's only one event - PolicyId := "GWS.COMMONCONTROLS.1.1v0.3" + PolicyId := CommonControlsId1_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -55,7 +55,7 @@ test_EnforceMFA_Correct_V1 if { test_EnforceMFA_Correct_V2 if { # Test enforcing MFA when there's multiple events, with the chronological latest # correct but not last in json list - PolicyId := "GWS.COMMONCONTROLS.1.1v0.3" + PolicyId := CommonControlsId1_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -113,7 +113,7 @@ test_EnforceMFA_Correct_V2 if { test_EnforceMFA_Incorrect_V1 if { # Test enforcing MFA when there's only one event and it's wrong - PolicyId := "GWS.COMMONCONTROLS.1.1v0.3" + PolicyId := CommonControlsId1_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -166,7 +166,7 @@ test_EnforceMFA_Incorrect_V1 if { test_EnforceMFA_Incorrect_V2 if { # Test enforcing MFA when there's multiple events, with the chronological latest # incorrect but not last in json list - PolicyId := "GWS.COMMONCONTROLS.1.1v0.3" + PolicyId := CommonControlsId1_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -229,7 +229,7 @@ test_EnforceMFA_Incorrect_V2 if { test_EnforceMFA_Incorrect_V3 if { # Test enforcing MFA when there's no enforce mfa event - PolicyId := "GWS.COMMONCONTROLS.1.1v0.3" + PolicyId := CommonControlsId1_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -261,7 +261,7 @@ test_EnforceMFA_Incorrect_V3 if { test_EnforceMFA_Incorrect_V4 if { # Test enforcing MFA when there's no change methods event - PolicyId := "GWS.COMMONCONTROLS.1.1v0.3" + PolicyId := CommonControlsId1_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -294,7 +294,7 @@ test_EnforceMFA_Incorrect_V4 if { test_EnforceMFA_Incorrect_V5 if { # Test, mfa not allowed - PolicyId := "GWS.COMMONCONTROLS.1.1v0.3" + PolicyId := CommonControlsId1_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -346,7 +346,7 @@ test_EnforceMFA_Incorrect_V5 if { test_EnforceMFA_Incorrect_V6 if { # Test, mfa not phishing resistant - PolicyId := "GWS.COMMONCONTROLS.1.1v0.3" + PolicyId := CommonControlsId1_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -401,7 +401,7 @@ test_EnforceMFA_Incorrect_V6 if { test_EnforceMFA_Incorrect_V7 if { # Test, mfa not phishing resistant - PolicyId := "GWS.COMMONCONTROLS.1.1v0.3" + PolicyId := CommonControlsId1_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -468,17 +468,17 @@ test_EnforceMFA_Incorrect_V7 if { "
", "The following groups are non-compliant:
    ", "
  • test@test.com: Allowed methods is set to Any except verification codes via text, phone call
  • ", - "
", + "", ]) } #-- # -# GWS.COMMONCONTROLS.1.2v0.3 +# GWS.COMMONCONTROLS.1.2 #-- test_Enforcement_Correct_V1 if { # Test enforcing MFA when there's only one event - PolicyId := "GWS.COMMONCONTROLS.1.2v0.3" + PolicyId := CommonControlsId1_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -507,7 +507,7 @@ test_Enforcement_Correct_V1 if { test_Enforcement_Correct_V2 if { # Test enforcing MFA when there's multiple events, with the chronological latest # correct but not last in json list - PolicyId := "GWS.COMMONCONTROLS.1.2v0.3" + PolicyId := CommonControlsId1_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -545,7 +545,7 @@ test_Enforcement_Correct_V2 if { test_Enforcement_Correct_V3 if { # Test enforcing MFA inheritance - PolicyId := "GWS.COMMONCONTROLS.1.2v0.3" + PolicyId := CommonControlsId1_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -593,7 +593,7 @@ test_Enforcement_Correct_V3 if { test_Enforcement_Incorrect_V1 if { # Test enforcing MFA when there's only one event and it's wrong - PolicyId := "GWS.COMMONCONTROLS.1.2v0.3" + PolicyId := CommonControlsId1_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -626,7 +626,7 @@ test_Enforcement_Incorrect_V1 if { test_Enforcement_Incorrect_V2 if { # Test enforcing MFA when there's multiple events, with the chronological latest # incorrect but not last in json list - PolicyId := "GWS.COMMONCONTROLS.1.2v0.3" + PolicyId := CommonControlsId1_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -669,7 +669,7 @@ test_Enforcement_Incorrect_V2 if { test_Enforcement_Incorrect_V3 if { # Test enforcing MFA when there no applicable event - PolicyId := "GWS.COMMONCONTROLS.1.2v0.3" + PolicyId := CommonControlsId1_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -701,11 +701,12 @@ test_Enforcement_Incorrect_V3 if { } # -# GWS.COMMONCONTROLS.1.4v0.3 +# GWS.COMMONCONTROLS.1.3 #-- + test_Disable_Trusted_Device_Correct_V1 if { # Test disable trusted device when there's only one event - PolicyId := "GWS.COMMONCONTROLS.1.3v0.3" + PolicyId := CommonControlsId1_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -734,7 +735,7 @@ test_Disable_Trusted_Device_Correct_V1 if { test_Disable_Trusted_Device_Correct_V2 if { # Test disabled trusted device when there's multiple events, with the chronological latest # correct but not last in json list - PolicyId := "GWS.COMMONCONTROLS.1.3v0.3" + PolicyId := CommonControlsId1_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -772,7 +773,7 @@ test_Disable_Trusted_Device_Correct_V2 if { test_Disable_Trusted_Device_Incorrect_V1 if { # Test disable trusted device when there's only one event and it's wrong - PolicyId := "GWS.COMMONCONTROLS.1.3v0.3" + PolicyId := CommonControlsId1_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -805,7 +806,7 @@ test_Disable_Trusted_Device_Incorrect_V1 if { test_Disable_Trusted_Device_Incorrect_V2 if { # Test disabled trusted device when there's multiple events, with the chronological latest # incorrect but not last in json list - PolicyId := "GWS.COMMONCONTROLS.1.3v0.3" + PolicyId := CommonControlsId1_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -848,7 +849,7 @@ test_Disable_Trusted_Device_Incorrect_V2 if { test_Disable_Trusted_Device_Incorrect_V3 if { # Test disabled trusted device when there no applicable event - PolicyId := "GWS.COMMONCONTROLS.1.3v0.3" + PolicyId := CommonControlsId1_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -881,12 +882,12 @@ test_Disable_Trusted_Device_Incorrect_V3 if { #-- # -# GWS.COMMONCONTROLS.1.4v0.3 +# GWS.COMMONCONTROLS.1.4 #-- test_NotPhone_Correct_V1 if { # Test enforcing MFA when there's only one event set to only key - PolicyId := "GWS.COMMONCONTROLS.1.4v0.3" + PolicyId := CommonControlsId1_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -914,7 +915,7 @@ test_NotPhone_Correct_V1 if { test_NotPhone_Correct_V2 if { # Test enforcing MFA when there's only one event set to any except phone - PolicyId := "GWS.COMMONCONTROLS.1.4v0.3" + PolicyId := CommonControlsId1_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -942,7 +943,7 @@ test_NotPhone_Correct_V2 if { test_NotPhone_Correct_V3 if { # Test enforcing MFA when there are multiple events - PolicyId := "GWS.COMMONCONTROLS.1.4v0.3" + PolicyId := CommonControlsId1_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -980,7 +981,7 @@ test_NotPhone_Correct_V3 if { test_NotPhone_Incorrect_V1 if { # Test enforcing MFA when there's only one event set to any - PolicyId := "GWS.COMMONCONTROLS.1.4v0.3" + PolicyId := CommonControlsId1_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1012,7 +1013,7 @@ test_NotPhone_Incorrect_V1 if { test_NotPhone_Incorrect_V2 if { # Test enforcing MFA when there's multiple events - PolicyId := "GWS.COMMONCONTROLS.1.4v0.3" + PolicyId := CommonControlsId1_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1054,7 +1055,7 @@ test_NotPhone_Incorrect_V2 if { test_NotPhone_Incorrect_V3 if { # Test enforcing MFA when there are no relevant events - PolicyId := "GWS.COMMONCONTROLS.1.4v0.3" + PolicyId := CommonControlsId1_4 Output := tests with input as { "commoncontrols_logs": {"items": [ ]}, @@ -1077,7 +1078,7 @@ test_NotPhone_Incorrect_V3 if { test_NotPhone_Incorrect_V4 if { # Test enforcing MFA when there are no relevant events for the top-level OU - PolicyId := "GWS.COMMONCONTROLS.1.4v0.3" + PolicyId := CommonControlsId1_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1109,7 +1110,7 @@ test_NotPhone_Incorrect_V4 if { test_NotPhone_Correct_V5 if { # Test enforcing MFA when there are multiple OUs - PolicyId := "GWS.COMMONCONTROLS.1.4v0.3" + PolicyId := CommonControlsId1_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1148,4 +1149,4 @@ test_NotPhone_Correct_V5 if { "" ]) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/commoncontrols/commoncontrols02_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols02_test.rego similarity index 94% rename from Testing/RegoTests/commoncontrols/commoncontrols02_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols02_test.rego index 860b040c..704ec041 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols02_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols02_test.rego @@ -2,12 +2,12 @@ package commoncontrols import future.keywords # -# GWS.COMMONCONTROLS.2.1v0.3 +# GWS.COMMONCONTROLS.2.1 #-- test_CAA_Correct_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.2.1v0.3" + PolicyId := CommonControlsId2_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -33,7 +33,7 @@ test_CAA_Correct_V1 if { test_CAA_Correct_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.2.1v0.3" + PolicyId := CommonControlsId2_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -68,7 +68,7 @@ test_CAA_Correct_V2 if { test_CAA_Incorrect_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.2.1v0.3" + PolicyId := CommonControlsId2_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -95,7 +95,7 @@ test_CAA_Incorrect_V1 if { test_CAA_Incorrect_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.2.1v0.3" + PolicyId := CommonControlsId2_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -131,7 +131,7 @@ test_CAA_Incorrect_V2 if { test_CAA_Incorrect_V3 if { # Test no relevant events - PolicyId := "GWS.COMMONCONTROLS.2.1v0.3" + PolicyId := CommonControlsId2_1 Output := tests with input as { "commoncontrols_logs": {"items": [ ]}, @@ -150,4 +150,4 @@ test_CAA_Incorrect_V3 if { "is non-compliant; manual check recommended." ]) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/commoncontrols/commoncontrols03_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols03_test.rego similarity index 71% rename from Testing/RegoTests/commoncontrols/commoncontrols03_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols03_test.rego index c3039226..edb51d65 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols03_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols03_test.rego @@ -1,13 +1,17 @@ package commoncontrols + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.COMMONCONTROLS.3.1v0.3 +# GWS.COMMONCONTROLS.3.1 #-- test_SSO_Correct_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.3.1v0.3" + PolicyId := CommonControlsId3_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -27,16 +31,12 @@ test_SSO_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SSO_Correct_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.3.1v0.3" + PolicyId := CommonControlsId3_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -67,16 +67,12 @@ test_SSO_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SSO_Correct_V3 if { # Test inheritance - PolicyId := "GWS.COMMONCONTROLS.3.1v0.3" + PolicyId := CommonControlsId3_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -118,16 +114,12 @@ test_SSO_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SSO_Incorrect_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.3.1v0.3" + PolicyId := CommonControlsId3_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -147,20 +139,14 @@ test_SSO_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Post-SSO verification is disabled
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SSO_Incorrect_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.3.1v0.3" + PolicyId := CommonControlsId3_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -191,20 +177,14 @@ test_SSO_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Post-SSO verification is disabled
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SSO_Incorrect_V3 if { # Test no relevant events - PolicyId := "GWS.COMMONCONTROLS.3.1v0.3" + PolicyId := CommonControlsId3_1 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -214,20 +194,12 @@ test_SSO_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} test_SSO_Incorrect_V4 if { # Test no relevant events in the top-level OU - PolicyId := "GWS.COMMONCONTROLS.3.1v0.3" + PolicyId := CommonControlsId3_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -247,20 +219,12 @@ test_SSO_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} test_SSO_Incorrect_V5 if { # Test multiple OUs - PolicyId := "GWS.COMMONCONTROLS.3.1v0.3" + PolicyId := CommonControlsId3_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -291,15 +255,10 @@ test_SSO_Incorrect_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Second-Level OU: Post-SSO verification is disabled
  • ", - "
  • Test Top-Level OU: Post-SSO verification is disabled
  • ", - "
" - ]) + failedOU := [{"Name": "Test Second-Level OU", + "Value": NonComplianceMessage3_1}, + {"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/commoncontrols/commoncontrols04_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols04_test.rego similarity index 73% rename from Testing/RegoTests/commoncontrols/commoncontrols04_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols04_test.rego index c5d8fb7e..8da28392 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols04_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols04_test.rego @@ -1,12 +1,16 @@ package commoncontrols + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.COMMONCONTROLS.4.1v0.3 +# GWS.COMMONCONTROLS.4.1 #-- test_Limit_Correct_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.4.1v0.3" + PolicyId := CommonControlsId4_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -26,16 +30,12 @@ test_Limit_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Limit_Correct_V2 if { # Test 1 event, smaller limit than needed - PolicyId := "GWS.COMMONCONTROLS.4.1v0.3" + PolicyId := CommonControlsId4_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -55,16 +55,12 @@ test_Limit_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Limit_Correct_V3 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.4.1v0.3" + PolicyId := CommonControlsId4_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -95,16 +91,12 @@ test_Limit_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Limit_Correct_V4 if { # Test 1 event, tenant_info["topLevelOU"] empty - PolicyId := "GWS.COMMONCONTROLS.4.1v0.3" + PolicyId := CommonControlsId4_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -130,16 +122,12 @@ test_Limit_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Limit_Correct_V5 if { # Test inheritance - PolicyId := "GWS.COMMONCONTROLS.4.1v0.3" + PolicyId := CommonControlsId4_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -181,16 +169,12 @@ test_Limit_Correct_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Limit_Incorrect_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.4.1v0.3" + PolicyId := CommonControlsId4_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -210,20 +194,14 @@ test_Limit_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Web session duration is set to 24 hours
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1(GetFriendlyValue4_1(86400))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Limit_Incorrect_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.4.1v0.3" + PolicyId := CommonControlsId4_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -254,19 +232,14 @@ test_Limit_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Web session duration is set to 24 hours
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1(GetFriendlyValue4_1(86400))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Limit_Incorrect_V3 if { # Test multiple OUs - PolicyId := "GWS.COMMONCONTROLS.4.1v0.3" + PolicyId := CommonControlsId4_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -297,20 +270,14 @@ test_Limit_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Web session duration is set to 24 hours
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1(GetFriendlyValue4_1(86400))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Limit_Incorrect_V4 if { # Test no relevant events - PolicyId := "GWS.COMMONCONTROLS.4.1v0.3" + PolicyId := CommonControlsId4_1 Output := tests with input as { "commoncontrols_logs": {"items": [ ]}, @@ -319,20 +286,12 @@ test_Limit_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} test_Limit_Incorrect_V5 if { # Test no relevant events in top-level OU - PolicyId := "GWS.COMMONCONTROLS.4.1v0.3" + PolicyId := CommonControlsId4_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -352,14 +311,6 @@ test_Limit_Incorrect_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} -#-- \ No newline at end of file + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} +#-- diff --git a/Testing/RegoTests/commoncontrols/commoncontrols05_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols05_test.rego similarity index 69% rename from Testing/RegoTests/commoncontrols/commoncontrols05_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols05_test.rego index fe2277e6..7b8bb728 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols05_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols05_test.rego @@ -1,13 +1,17 @@ package commoncontrols + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.COMMONCONTROLS.5.1v0.3 +# GWS.COMMONCONTROLS.5.1 #-- test_Strength_Correct_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.5.1v0.3" + PolicyId := CommonControlsId5_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -27,16 +31,12 @@ test_Strength_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Strength_Correct_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.5.1v0.3" + PolicyId := CommonControlsId5_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -67,16 +67,12 @@ test_Strength_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Strength_Correct_V3 if { # Test inheritance - PolicyId := "GWS.COMMONCONTROLS.5.1v0.3" + PolicyId := CommonControlsId5_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -118,16 +114,12 @@ test_Strength_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Strength_Incorrect_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.5.1v0.3" + PolicyId := CommonControlsId5_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -147,20 +139,14 @@ test_Strength_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Enforce strong password is OFF
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Enforce strong password is OFF"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Strength_Incorrect_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.5.1v0.3" + PolicyId := CommonControlsId5_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -191,20 +177,14 @@ test_Strength_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Enforce strong password is OFF
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Enforce strong password is OFF"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Strength_Incorrect_V3 if { # Test no relevant events - PolicyId := "GWS.COMMONCONTROLS.5.1v0.3" + PolicyId := CommonControlsId5_1 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -214,20 +194,12 @@ test_Strength_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) +} test_Strength_Incorrect_V4 if { # Test no relevant events for top-level ou - PolicyId := "GWS.COMMONCONTROLS.5.1v0.3" + PolicyId := CommonControlsId5_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -247,20 +219,12 @@ test_Strength_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) +} test_Strength_Incorrect_V5 if { # Test multiple OUs - PolicyId := "GWS.COMMONCONTROLS.5.1v0.3" + PolicyId := CommonControlsId5_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -291,25 +255,18 @@ test_Strength_Incorrect_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Second-Level OU: Enforce strong password is OFF
  • ", - "
" - ]) + failedOU := [{"Name": "Test Second-Level OU", + "Value": "Enforce strong password is OFF"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- - # -# GWS.COMMONCONTROLS.5.2v0.3 +# GWS.COMMONCONTROLS.5.2 #-- test_Length_Correct_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.5.2v0.3" + PolicyId := CommonControlsId5_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -329,16 +286,12 @@ test_Length_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Length_Correct_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.5.2v0.3" + PolicyId := CommonControlsId5_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -369,16 +322,12 @@ test_Length_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Length_Correct_V3 if { # Test longer than needed - PolicyId := "GWS.COMMONCONTROLS.5.2v0.3" + PolicyId := CommonControlsId5_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -398,16 +347,12 @@ test_Length_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Length_Incorrect_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.5.2v0.3" + PolicyId := CommonControlsId5_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -427,20 +372,14 @@ test_Length_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Minimum password length is set to 8
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_2(8)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Length_Incorrect_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.5.2v0.3" + PolicyId := CommonControlsId5_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -471,20 +410,14 @@ test_Length_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Minimum password length is set to 8
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_2(8)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Length_Incorrect_V3 if { # Test no relevant events - PolicyId := "GWS.COMMONCONTROLS.5.2v0.3" + PolicyId := CommonControlsId5_2 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -494,20 +427,12 @@ test_Length_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} test_Length_Incorrect_V4 if { # Test no relevant events in top-level ou - PolicyId := "GWS.COMMONCONTROLS.5.2v0.3" + PolicyId := CommonControlsId5_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -527,20 +452,12 @@ test_Length_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} test_Length_Incorrect_V5 if { # Test multiple OUs - PolicyId := "GWS.COMMONCONTROLS.5.2v0.3" + PolicyId := CommonControlsId5_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -571,24 +488,19 @@ test_Length_Incorrect_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Minimum password length is set to 10
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_2(10)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- # -# GWS.COMMONCONTROLS.5.3v0.3 +# GWS.COMMONCONTROLS.5.3 #-- + test_Length15_Correct_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.5.3v0.3" + PolicyId := CommonControlsId5_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -608,16 +520,12 @@ test_Length15_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Length15_Correct_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.5.3v0.3" + PolicyId := CommonControlsId5_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -648,16 +556,12 @@ test_Length15_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Length15_Correct_V3 if { # Test longer than needed - PolicyId := "GWS.COMMONCONTROLS.5.3v0.3" + PolicyId := CommonControlsId5_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -677,16 +581,12 @@ test_Length15_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Length15_Incorrect_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.5.3v0.3" + PolicyId := CommonControlsId5_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -706,20 +606,14 @@ test_Length15_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Minimum password length is set to 12
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_3(12)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Length15_Incorrect_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.5.3v0.3" + PolicyId := CommonControlsId5_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -750,20 +644,14 @@ test_Length15_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Minimum password length is set to 12
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_3(12)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Length15_Incorrect_V3 if { # Test no relevant events - PolicyId := "GWS.COMMONCONTROLS.5.3v0.3" + PolicyId := CommonControlsId5_3 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -773,20 +661,12 @@ test_Length15_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} test_Length15_Incorrect_V4 if { # Test no relevant events in top-level ou - PolicyId := "GWS.COMMONCONTROLS.5.3v0.3" + PolicyId := CommonControlsId5_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -806,20 +686,12 @@ test_Length15_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} test_Length15_Incorrect_V5 if { # Test multiple OUs - PolicyId := "GWS.COMMONCONTROLS.5.3v0.3" + PolicyId := CommonControlsId5_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -850,25 +722,18 @@ test_Length15_Incorrect_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Minimum password length is set to 12
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_3(12)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- - # -# GWS.COMMONCONTROLS.5.4v0.3 +# GWS.COMMONCONTROLS.5.4 #-- test_Enforce_Correct_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.5.4v0.3" + PolicyId := CommonControlsId5_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -891,16 +756,12 @@ test_Enforce_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Enforce_Correct_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.5.4v0.3" + PolicyId := CommonControlsId5_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -937,16 +798,12 @@ test_Enforce_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Enforce_Incorrect_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.5.4v0.3" + PolicyId := CommonControlsId5_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -969,20 +826,14 @@ test_Enforce_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Enforce password policy at next sign-in is OFF
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Enforce password policy at next sign-in is OFF"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Enforce_Incorrect_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.5.4v0.3" + PolicyId := CommonControlsId5_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1019,20 +870,14 @@ test_Enforce_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Enforce password policy at next sign-in is OFF
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Enforce password policy at next sign-in is OFF"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Enforce_Incorrect_V3 if { # Test no relevant events - PolicyId := "GWS.COMMONCONTROLS.5.4v0.3" + PolicyId := CommonControlsId5_4 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -1042,20 +887,12 @@ test_Enforce_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} test_Enforce_Incorrect_V4 if { # Test no relevant events in top-level OU - PolicyId := "GWS.COMMONCONTROLS.5.4v0.3" + PolicyId := CommonControlsId5_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1078,20 +915,12 @@ test_Enforce_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} test_Enforce_Incorrect_V5 if { # Test multiple OUs - PolicyId := "GWS.COMMONCONTROLS.5.4v0.3" + PolicyId := CommonControlsId5_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1128,25 +957,21 @@ test_Enforce_Incorrect_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Second-Level OU: Enforce password policy at next sign-in is OFF
  • ", - "
  • Test Top-Level OU: Enforce password policy at next sign-in is OFF
  • ", - "
" - ]) + failedOU := [{"Name": "Test Second-Level OU", + "Value": "Enforce password policy at next sign-in is OFF"}, + {"Name": "Test Top-Level OU", + "Value": "Enforce password policy at next sign-in is OFF"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- # -# GWS.COMMONCONTROLS.5.5v0.3 +# GWS.COMMONCONTROLS.5.5 #-- + test_Reuse_Correct_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.5.5v0.3" + PolicyId := CommonControlsId5_5 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1166,16 +991,12 @@ test_Reuse_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Reuse_Correct_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.5.5v0.3" + PolicyId := CommonControlsId5_5 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1206,16 +1027,12 @@ test_Reuse_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Reuse_Incorrect_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.5.5v0.3" + PolicyId := CommonControlsId5_5 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1235,20 +1052,14 @@ test_Reuse_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Allow password reuse is ON
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Allow password reuse is ON"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Reuse_Incorrect_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.5.5v0.3" + PolicyId := CommonControlsId5_5 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1279,20 +1090,14 @@ test_Reuse_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Allow password reuse is ON
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Allow password reuse is ON"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Reuse_Incorrect_V3 if { # Test no relevant events - PolicyId := "GWS.COMMONCONTROLS.5.5v0.3" + PolicyId := CommonControlsId5_5 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -1302,20 +1107,12 @@ test_Reuse_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) +} test_Reuse_Incorrect_V4 if { # Test no relevant events for top-level OU - PolicyId := "GWS.COMMONCONTROLS.5.5v0.3" + PolicyId := CommonControlsId5_5 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1335,20 +1132,12 @@ test_Reuse_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) +} test_Reuse_Incorrect_V5 if { # Test multiple OUs - PolicyId := "GWS.COMMONCONTROLS.5.5v0.3" + PolicyId := CommonControlsId5_5 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1379,25 +1168,19 @@ test_Reuse_Incorrect_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Second-Level OU: Allow password reuse is ON
  • ", - "
" - ]) + failedOU := [{"Name": "Test Second-Level OU", + "Value": "Allow password reuse is ON"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- # -# GWS.COMMONCONTROLS.5.6v0.3 +# GWS.COMMONCONTROLS.5.6 #-- test_Expire_Correct_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.5.6v0.3" + PolicyId := CommonControlsId5_6 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1417,16 +1200,12 @@ test_Expire_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Expire_Correct_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.5.6v0.3" + PolicyId := CommonControlsId5_6 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1457,16 +1236,12 @@ test_Expire_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Expire_Incorrect_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.5.6v0.3" + PolicyId := CommonControlsId5_6 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1486,20 +1261,14 @@ test_Expire_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Password reset frequency is 1 days
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Password reset frequency is 1 days"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Expire_Incorrect_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.5.6v0.3" + PolicyId := CommonControlsId5_6 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1530,20 +1299,14 @@ test_Expire_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Password reset frequency is 1 days
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Password reset frequency is 1 days"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Expire_Incorrect_V3 if { # Test no relevant events - PolicyId := "GWS.COMMONCONTROLS.5.6v0.3" + PolicyId := CommonControlsId5_6 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -1553,20 +1316,12 @@ test_Expire_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) +} test_Expire_Incorrect_V4 if { # Test no relevant events in top-level OU - PolicyId := "GWS.COMMONCONTROLS.5.6v0.3" + PolicyId := CommonControlsId5_6 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1586,20 +1341,12 @@ test_Expire_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) +} test_Expire_Incorrect_V5 if { # Test multiple OUs - PolicyId := "GWS.COMMONCONTROLS.5.6v0.3" + PolicyId := CommonControlsId5_6 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1630,15 +1377,8 @@ test_Expire_Incorrect_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Password reset frequency is 1 days
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Password reset frequency is 1 days"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- - diff --git a/Testing/RegoTests/commoncontrols/commoncontrols06_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols06_test.rego similarity index 95% rename from Testing/RegoTests/commoncontrols/commoncontrols06_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols06_test.rego index 01eb0f68..cc4f0831 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols06_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols06_test.rego @@ -2,11 +2,11 @@ package commoncontrols import future.keywords # -# GWS.COMMONCONTROLS.6.1v0.3 +# GWS.COMMONCONTROLS.6.1 #-- test_Separate_Correct_V1 if { # Test not implemented - PolicyId := "GWS.COMMONCONTROLS.6.1v0.3" + PolicyId := CommonControlsId6_1 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -25,11 +25,11 @@ test_Separate_Correct_V1 if { #-- # -# GWS.COMMONCONTROLS.6.2v0.3 +# GWS.COMMONCONTROLS.6.2 #-- test_Count_Correct_V1 if { # 2 super admins - PolicyId := "GWS.COMMONCONTROLS.6.2v0.3" + PolicyId := CommonControlsId6_2 Output := tests with input as { "super_admins": [ { @@ -58,7 +58,7 @@ test_Count_Correct_V1 if { test_Count_Correct_V2 if { # 3 super admins - PolicyId := "GWS.COMMONCONTROLS.6.2v0.3" + PolicyId := CommonControlsId6_2 Output := tests with input as { "super_admins": [ { @@ -91,7 +91,7 @@ test_Count_Correct_V2 if { test_Count_Correct_V3 if { # 8 super admins - PolicyId := "GWS.COMMONCONTROLS.6.2v0.3" + PolicyId := CommonControlsId6_2 Output := tests with input as { "super_admins": [ { @@ -144,7 +144,7 @@ test_Count_Correct_V3 if { test_Count_Incorrect_V1 if { # 9 super admins - PolicyId := "GWS.COMMONCONTROLS.6.2v0.3" + PolicyId := CommonControlsId6_2 Output := tests with input as { "super_admins": [ { @@ -201,7 +201,7 @@ test_Count_Incorrect_V1 if { test_Count_Incorrect_V2 if { # 1 super admins - PolicyId := "GWS.COMMONCONTROLS.6.2v0.3" + PolicyId := CommonControlsId6_2 Output := tests with input as { "super_admins": [ { @@ -222,4 +222,4 @@ test_Count_Incorrect_V2 if { "though we are not able to account for this automatically." ]) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/commoncontrols/commoncontrols07_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols07_test.rego similarity index 88% rename from Testing/RegoTests/commoncontrols/commoncontrols07_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols07_test.rego index ce5fbb05..d782940b 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols07_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols07_test.rego @@ -2,11 +2,11 @@ package commoncontrols import future.keywords # -# GWS.COMMONCONTROLS.7.1v0.3 +# GWS.COMMONCONTROLS.7.1 #-- test_Conflicting_Correct_V1 if { # Test not implemented - PolicyId := "GWS.COMMONCONTROLS.7.1v0.3" + PolicyId := CommonControlsId7_1 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -22,4 +22,4 @@ test_Conflicting_Correct_V1 if { RuleOutput[0].NoSuchEvent RuleOutput[0].ReportDetails == "Currently not able to be tested automatically; please manually check." } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/commoncontrols/commoncontrols08_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols08_test.rego similarity index 74% rename from Testing/RegoTests/commoncontrols/commoncontrols08_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols08_test.rego index a80e0c3b..ce552538 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols08_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols08_test.rego @@ -1,12 +1,17 @@ package commoncontrols + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestGroupNonCompliant +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.COMMONCONTROLS.8.1v0.3 +# GWS.COMMONCONTROLS.8.1 #-- test_SelfRecovery_Correct_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.8.1v0.3" + PolicyId := CommonControlsId8_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -29,16 +34,12 @@ test_SelfRecovery_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SelfRecovery_Correct_V2 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.8.1v0.3" + PolicyId := CommonControlsId8_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -75,16 +76,12 @@ test_SelfRecovery_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SelfRecovery_Correct_V3 if { # Test inheritance - PolicyId := "GWS.COMMONCONTROLS.8.1v0.3" + PolicyId := CommonControlsId8_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -135,16 +132,12 @@ test_SelfRecovery_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SelfRecovery_Incorrect_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.8.1v0.3" + PolicyId := CommonControlsId8_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -167,20 +160,14 @@ test_SelfRecovery_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Allow super admins to recover their account is ON
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Allow super admins to recover their account is ON"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SelfRecovery_Incorrect_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.8.1v0.3" + PolicyId := CommonControlsId8_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -217,20 +204,14 @@ test_SelfRecovery_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Allow super admins to recover their account is ON
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Allow super admins to recover their account is ON"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SelfRecovery_Incorrect_V3 if { # Test no relevant events - PolicyId := "GWS.COMMONCONTROLS.8.1v0.3" + PolicyId := CommonControlsId8_1 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -240,20 +221,12 @@ test_SelfRecovery_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} test_SelfRecovery_Incorrect_V4 if { # Test no relevant events in the top-level OU - PolicyId := "GWS.COMMONCONTROLS.8.1v0.3" + PolicyId := CommonControlsId8_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -276,20 +249,12 @@ test_SelfRecovery_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} test_SelfRecovery_Incorrect_V5 if { # Test multiple OUs - PolicyId := "GWS.COMMONCONTROLS.8.1v0.3" + PolicyId := CommonControlsId8_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -326,21 +291,16 @@ test_SelfRecovery_Incorrect_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Second-Level OU: Allow super admins to recover their account is ON
  • ", - "
  • Test Top-Level OU: Allow super admins to recover their account is ON
  • ", - "
" - ]) + failedOU := [{"Name": "Test Second-Level OU", + "Value": "Allow super admins to recover their account is ON"}, + {"Name": "Test Top-Level OU", + "Value": "Allow super admins to recover their account is ON"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SelfRecovery_Incorrect_V6 if { # Test group - PolicyId := "GWS.COMMONCONTROLS.8.1v0.3" + PolicyId := CommonControlsId8_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -378,14 +338,8 @@ test_SelfRecovery_Incorrect_V6 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following groups are non-compliant:
    ", - "
  • test@test: Allow super admins to recover their account is ON
  • ", - "
" - ]) + failedOU := [{"Name": "test@test", + "Value": "Allow super admins to recover their account is ON"}] + FailTestGroupNonCompliant(PolicyId, Output, failedOU) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/commoncontrols/commoncontrols09_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols09_test.rego similarity index 87% rename from Testing/RegoTests/commoncontrols/commoncontrols09_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols09_test.rego index fb3e39dd..9ce6cfcc 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols09_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols09_test.rego @@ -2,11 +2,11 @@ package commoncontrols import future.keywords # -# GWS.COMMONCONTROLS.9.1v0.3 +# GWS.COMMONCONTROLS.9.1 #-- test_HighlyPriv_Correct_V1 if { # Test not implemented - PolicyId := "GWS.COMMONCONTROLS.9.1v0.3" + PolicyId := CommonControlsId9_1 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -25,11 +25,11 @@ test_HighlyPriv_Correct_V1 if { #-- # -# GWS.COMMONCONTROLS.9.2v0.3 +# GWS.COMMONCONTROLS.9.2 #-- test_Sensitive_Correct_V1 if { # Test not implemented - PolicyId := "GWS.COMMONCONTROLS.9.2v0.3" + PolicyId := CommonControlsId9_2 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -45,4 +45,4 @@ test_Sensitive_Correct_V1 if { RuleOutput[0].NoSuchEvent RuleOutput[0].ReportDetails == "Currently not able to be tested automatically; please manually check." } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/commoncontrols/commoncontrols10_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols10_test.rego similarity index 79% rename from Testing/RegoTests/commoncontrols/commoncontrols10_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols10_test.rego index 428b6b80..a5e4855a 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols10_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols10_test.rego @@ -1,13 +1,17 @@ package commoncontrols + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.COMMONCONTROLS.10.1v0.3 +# GWS.COMMONCONTROLS.10.1 #-- test_AccessControl_Correct_V1 if { # Test restricted when there is no _HIGH_RISK event present # (not all services have a risk version, just Drive and Gmail) - PolicyId := "GWS.COMMONCONTROLS.10.1v0.3" + PolicyId := CommonControlsId10_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -35,7 +39,7 @@ test_AccessControl_Correct_V1 if { test_AccessControl_Correct_V2 if { # Test allowed with not high risk allowed - PolicyId := "GWS.COMMONCONTROLS.10.1v0.3" + PolicyId := CommonControlsId10_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -73,7 +77,7 @@ test_AccessControl_Correct_V2 if { test_AccessControl_Correct_V3 if { # Test restricted with not high risk disallowed - PolicyId := "GWS.COMMONCONTROLS.10.1v0.3" + PolicyId := CommonControlsId10_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -111,7 +115,7 @@ test_AccessControl_Correct_V3 if { test_AccessControl_Correct_V4 if { # Test multiple services - PolicyId := "GWS.COMMONCONTROLS.10.1v0.3" + PolicyId := CommonControlsId10_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -159,7 +163,7 @@ test_AccessControl_Correct_V4 if { test_AccessControl_Correct_V5 if { # Test multiple services, multiple events - PolicyId := "GWS.COMMONCONTROLS.10.1v0.3" + PolicyId := CommonControlsId10_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -228,7 +232,7 @@ test_AccessControl_Correct_V5 if { test_AccessControl_Incorrect_V1 if { # Test unrestricted when there is no _HIGH_RISK event present # (not all services have a risk version, just Drive and Gmail) - PolicyId := "GWS.COMMONCONTROLS.10.1v0.3" + PolicyId := CommonControlsId10_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -256,7 +260,7 @@ test_AccessControl_Incorrect_V1 if { test_AccessControl_Incorrect_V2 if { # Test unrestricted with not high risk disallowed - PolicyId := "GWS.COMMONCONTROLS.10.1v0.3" + PolicyId := CommonControlsId10_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -294,7 +298,7 @@ test_AccessControl_Incorrect_V2 if { test_AccessControl_Incorrect_V3 if { # Test unrestricted with no high risk version - PolicyId := "GWS.COMMONCONTROLS.10.1v0.3" + PolicyId := CommonControlsId10_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -322,7 +326,7 @@ test_AccessControl_Incorrect_V3 if { test_AccessControl_Incorrect_V4 if { # Test no events - PolicyId := "GWS.COMMONCONTROLS.10.1v0.3" + PolicyId := CommonControlsId10_1 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -345,11 +349,11 @@ test_AccessControl_Incorrect_V4 if { #-- # -# GWS.COMMONCONTROLS.10.2v0.3 +# GWS.COMMONCONTROLS.10.2 #-- test_Consent_Correct_V1 if { # Test disallow with no high risk version - PolicyId := "GWS.COMMONCONTROLS.10.2v0.3" + PolicyId := CommonControlsId10_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -377,7 +381,7 @@ test_Consent_Correct_V1 if { test_Consent_Correct_V2 if { # Test disallow with high risk version - PolicyId := "GWS.COMMONCONTROLS.10.2v0.3" + PolicyId := CommonControlsId10_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -415,7 +419,7 @@ test_Consent_Correct_V2 if { test_Consent_Incorrect_V1 if { # Test allow with no high risk version - PolicyId := "GWS.COMMONCONTROLS.10.2v0.3" + PolicyId := CommonControlsId10_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -443,7 +447,7 @@ test_Consent_Incorrect_V1 if { test_Consent_Incorrect_V2 if { # Test allow with high risk version allowed - PolicyId := "GWS.COMMONCONTROLS.10.2v0.3" + PolicyId := CommonControlsId10_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -481,7 +485,7 @@ test_Consent_Incorrect_V2 if { test_Consent_Incorrect_V3 if { # Test allow with high risk version blocked - PolicyId := "GWS.COMMONCONTROLS.10.2v0.3" + PolicyId := CommonControlsId10_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -519,7 +523,7 @@ test_Consent_Incorrect_V3 if { test_Consent_Incorrect_V4 if { # Test no events - PolicyId := "GWS.COMMONCONTROLS.10.2v0.3" + PolicyId := CommonControlsId10_2 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -542,11 +546,11 @@ test_Consent_Incorrect_V4 if { #-- # -# GWS.COMMONCONTROLS.10.3v0.3 +# GWS.COMMONCONTROLS.10.3 #-- test_Internal_Correct_V1 if { # Test basic - PolicyId := "GWS.COMMONCONTROLS.10.3v0.3" + PolicyId := CommonControlsId10_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -564,16 +568,12 @@ test_Internal_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Internal_Correct_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.10.3v0.3" + PolicyId := CommonControlsId10_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -600,16 +600,12 @@ test_Internal_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Internal_Incorrect_V1 if { # Test basic - PolicyId := "GWS.COMMONCONTROLS.10.3v0.3" + PolicyId := CommonControlsId10_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -627,20 +623,14 @@ test_Internal_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Trust internal apps is ON
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Trust internal apps is ON"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Internal_Incorrect_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.10.3v0.3" + PolicyId := CommonControlsId10_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -667,20 +657,14 @@ test_Internal_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Trust internal apps is ON
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Trust internal apps is ON"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Internal_Incorrect_V3 if { # Test no events - PolicyId := "GWS.COMMONCONTROLS.10.3v0.3" + PolicyId := CommonControlsId10_3 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -690,24 +674,16 @@ test_Internal_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} #-- # -# GWS.COMMONCONTROLS.10.4v0.3 +# GWS.COMMONCONTROLS.10.4 #-- test_Unconfigured_Correct_V1 if { # Test basic - PolicyId := "GWS.COMMONCONTROLS.10.4v0.3" + PolicyId := CommonControlsId10_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -725,16 +701,12 @@ test_Unconfigured_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Unconfigured_Correct_V2 if { # Test basic multiple events - PolicyId := "GWS.COMMONCONTROLS.10.4v0.3" + PolicyId := CommonControlsId10_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -761,16 +733,12 @@ test_Unconfigured_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Unconfigured_Incorrect_V1 if { # Test unblock - PolicyId := "GWS.COMMONCONTROLS.10.4v0.3" + PolicyId := CommonControlsId10_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -788,21 +756,16 @@ test_Unconfigured_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Unconfigured third-party app access is set to ", - "Allow users to access any third-party apps
  • ", - "
" - ]) + msg := sprintf("Unconfigured third-party app access is set to %s", + ["Allow users to access any third-party apps"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": msg}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Unconfigured_Incorrect_V2 if { # Test signin only - PolicyId := "GWS.COMMONCONTROLS.10.4v0.3" + PolicyId := CommonControlsId10_4 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -820,21 +783,17 @@ test_Unconfigured_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Unconfigured third-party app access is set to ", - "Allow users to access third-party apps that only request basic info needed for Sign in with Google.
  • ", - "
" - ]) + msg := sprintf("Unconfigured third-party app access is set to %s %s", + ["Allow users to access third-party apps that only", + "request basic info needed for Sign in with Google."]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": msg}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Unconfigured_Incorrect_V3 if { # Test no events - PolicyId := "GWS.COMMONCONTROLS.10.4v0.3" + PolicyId := CommonControlsId10_4 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -844,25 +803,17 @@ test_Unconfigured_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} #-- - # -# GWS.COMMONCONTROLS.10.5v0.3 +# GWS.COMMONCONTROLS.10.5 #-- + test_Access_Correct_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.10.5v0.3" + PolicyId := CommonControlsId10_5 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -881,16 +832,12 @@ test_Access_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Access_Correct_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.10.5v0.3" + PolicyId := CommonControlsId10_5 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -919,16 +866,12 @@ test_Access_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Access_Incorrect_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.10.5v0.3" + PolicyId := CommonControlsId10_5 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -947,20 +890,14 @@ test_Access_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Allow users to manage their access to less secure apps is ON
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage10_5}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Access_Incorrect_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.10.5v0.3" + PolicyId := CommonControlsId10_5 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -989,20 +926,14 @@ test_Access_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Allow users to manage their access to less secure apps is ON
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage10_5}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Access_Incorrect_V3 if { # Test no relevant events - PolicyId := "GWS.COMMONCONTROLS.10.5v0.3" + PolicyId := CommonControlsId10_5 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -1012,20 +943,12 @@ test_Access_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) +} test_Access_Incorrect_V4 if { # Test no relevant events in top-level OU - PolicyId := "GWS.COMMONCONTROLS.10.5v0.3" + PolicyId := CommonControlsId10_5 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1044,20 +967,12 @@ test_Access_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) +} test_Access_Incorrect_V5 if { # Test multiple OUs - PolicyId := "GWS.COMMONCONTROLS.10.5v0.3" + PolicyId := CommonControlsId10_5 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -1086,14 +1001,8 @@ test_Access_Incorrect_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Second-Level OU: Allow users to manage their access to less secure apps is ON
  • ", - "
" - ]) + failedOU := [{"Name": "Test Second-Level OU", + "Value": NonComplianceMessage10_5}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/commoncontrols/commoncontrols11_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols11_test.rego similarity index 78% rename from Testing/RegoTests/commoncontrols/commoncontrols11_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols11_test.rego index 4e697da2..08095fb7 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols11_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols11_test.rego @@ -1,13 +1,18 @@ package commoncontrols -import future.keywords +import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestGroupNonCompliant +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.COMMONCONTROLS.11.1v0.3 +# GWS.COMMONCONTROLS.11.1 #-- + test_Installation_Correct_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.11.1v0.3" + PolicyId := CommonControlsId11_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -42,16 +47,12 @@ test_Installation_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Installation_Correct_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.11.1v0.3" + PolicyId := CommonControlsId11_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -95,16 +96,12 @@ test_Installation_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Installation_Correct_V3 if { # Test inheritance - PolicyId := "GWS.COMMONCONTROLS.11.1v0.3" + PolicyId := CommonControlsId11_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -159,16 +156,12 @@ test_Installation_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Installation_Incorrect_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.11.1v0.3" + PolicyId := CommonControlsId11_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -201,20 +194,14 @@ test_Installation_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Users can install and run any app from the Marketplace
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage11_1(true)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Installation_Incorrect_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.11.1v0.3" + PolicyId := CommonControlsId11_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -258,20 +245,14 @@ test_Installation_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Users can install and run any app from the Marketplace
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage11_1(true)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Installation_Incorrect_V3 if { # Test no relevant events - PolicyId := "GWS.COMMONCONTROLS.11.1v0.3" + PolicyId := CommonControlsId11_1 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -281,21 +262,12 @@ test_Installation_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_Installation_Incorrect_V4 if { # Test no relevant events in top-level OU - PolicyId := "GWS.COMMONCONTROLS.11.1v0.3" + PolicyId := CommonControlsId11_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -315,21 +287,12 @@ test_Installation_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, ", - "Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_Installation_Incorrect_V5 if { # Test multiple OUs - PolicyId := "GWS.COMMONCONTROLS.11.1v0.3" + PolicyId := CommonControlsId11_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -386,20 +349,14 @@ test_Installation_Incorrect_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Second-Level OU: Users can install and run any app from the Marketplace
  • ", - "
" - ]) + failedOU := [{"Name": "Test Second-Level OU", + "Value": NonComplianceMessage11_1(true)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Installation_Incorrect_V6 if { # Test internal allowed - PolicyId := "GWS.COMMONCONTROLS.11.1v0.3" + PolicyId := CommonControlsId11_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -432,20 +389,14 @@ test_Installation_Incorrect_V6 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Users can install and run any internal app, even if it's not allowlisted
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage11_1(false)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Installation_Incorrect_V7 if { # Test group - PolicyId := "GWS.COMMONCONTROLS.11.1v0.3" + PolicyId := CommonControlsId11_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -492,14 +443,8 @@ test_Installation_Incorrect_V7 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following groups are non-compliant:
    ", - "
  • test@test: Users can install and run any internal app, even if it's not allowlisted
  • ", - "
" - ]) + failedGroup := [{"Name": "test@test", + "Value": NonComplianceMessage11_1(false)}] + FailTestGroupNonCompliant(PolicyId, Output, failedGroup) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/commoncontrols/commoncontrols12_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols12_test.rego similarity index 76% rename from Testing/RegoTests/commoncontrols/commoncontrols12_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols12_test.rego index 93bba8a0..84be48dc 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols12_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols12_test.rego @@ -1,12 +1,17 @@ package commoncontrols + import future.keywords +import data.utils.FailTestGroupNonCompliant +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.COMMONCONTROLS.12.1v0.3 +# GWS.COMMONCONTROLS.12.1 #-- + test_Takeout_Correct_V1 if { # Test basic correct - PolicyId := "GWS.COMMONCONTROLS.12.1v0.3" + PolicyId := CommonControlsId12_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -37,16 +42,12 @@ test_Takeout_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Takeout_Incorrect_V1 if { # Test specifc apps allowed, ou - PolicyId := "GWS.COMMONCONTROLS.12.1v0.3" + PolicyId := CommonControlsId12_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -88,21 +89,14 @@ test_Takeout_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: The following apps with individual admin control have Takeout enabled: ", - "Blogger, Google Maps
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage12_1(["Blogger", "Google Maps"])}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Takeout_Incorrect_V2 if { # Test nonspecific apps allowed, ou - PolicyId := "GWS.COMMONCONTROLS.12.1v0.3" + PolicyId := CommonControlsId12_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -133,20 +127,14 @@ test_Takeout_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Takeout is enabled for services without an individual admin control
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage12_1a}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Takeout_Incorrect_V3 if { # Test nonspecific apps and specific apps allowed, ou - PolicyId := "GWS.COMMONCONTROLS.12.1v0.3" + PolicyId := CommonControlsId12_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -177,21 +165,16 @@ test_Takeout_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Takeout is enabled for services without an individual admin control
  • ", - "
  • Test Top-Level OU: The following apps with individual admin control have Takeout enabled: Blogger
  • ", - "
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage12_1a}, + {"Name": "Test Top-Level OU", + "Value": NonComplianceMessage12_1(["Blogger"])}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Takeout_Incorrect_V4 if { # Test nonspecific apps allowed, group - PolicyId := "GWS.COMMONCONTROLS.12.1v0.3" + PolicyId := CommonControlsId12_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -234,14 +217,8 @@ test_Takeout_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following groups are non-compliant:
    ", - "
  • test@test: Takeout is enabled for services without an individual admin control
  • ", - "
" - ]) + failedGroup := [{"Name": "test@test", + "Value": NonComplianceMessage12_1a}] + FailTestGroupNonCompliant(PolicyId, Output, failedGroup) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/commoncontrols/commoncontrols13_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols13_test.rego similarity index 89% rename from Testing/RegoTests/commoncontrols/commoncontrols13_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols13_test.rego index 4095d258..a264bc0e 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols13_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols13_test.rego @@ -2,11 +2,11 @@ package commoncontrols import future.keywords # -# GWS.COMMONCONTROLS.13.1v0.3 +# GWS.COMMONCONTROLS.13.1 #-- test_Required_Correct_V1 if { # Test not implemented - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -24,4 +24,4 @@ test_Required_Correct_V1 if { "Results for GWS.COMMONCONTROLS.13 are listed in the ", "Rules Report."]) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/commoncontrols/commoncontrols14_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols14_test.rego similarity index 87% rename from Testing/RegoTests/commoncontrols/commoncontrols14_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols14_test.rego index 10947a50..6e359608 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols14_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols14_test.rego @@ -2,11 +2,11 @@ package commoncontrols import future.keywords # -# GWS.COMMONCONTROLS.14.1v0.3 +# GWS.COMMONCONTROLS.14.1 #-- test_SEIM_Correct_V1 if { # Test not implemented - PolicyId := "GWS.COMMONCONTROLS.14.1v0.3" + PolicyId := CommonControlsId14_1 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -25,11 +25,11 @@ test_SEIM_Correct_V1 if { #-- # -# GWS.COMMONCONTROLS.14.2v0.3 +# GWS.COMMONCONTROLS.14.2 #-- test_AccessControl_Correct_V1 if { # Test not implemented - PolicyId := "GWS.COMMONCONTROLS.14.2v0.3" + PolicyId := CommonControlsId14_2 Output := tests with input as { "commoncontrols_logs": {"items": [ diff --git a/Testing/RegoTests/commoncontrols/commoncontrols15_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols15_test.rego similarity index 96% rename from Testing/RegoTests/commoncontrols/commoncontrols15_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols15_test.rego index 842c013a..1702cf41 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols15_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols15_test.rego @@ -2,11 +2,11 @@ package commoncontrols import future.keywords # -# GWS.COMMONCONTROLS.15.1v0.3 +# GWS.COMMONCONTROLS.15.1 #-- test_AccessControl_Correct_V1 if { # Test not implemented - PolicyId := "GWS.COMMONCONTROLS.15.1v0.3" + PolicyId := CommonControlsId15_1 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -26,11 +26,11 @@ test_AccessControl_Correct_V1 if { # -# GWS.COMMONCONTROLS.15.2v0.3 +# GWS.COMMONCONTROLS.15.2 #-- test_DataProcessing_OUs_Correct_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.15.2v0.3" + PolicyId := CommonControlsId15_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -59,7 +59,7 @@ test_DataProcessing_OUs_Correct_V1 if { test_DataProcessing_OUs_Correct_V2 if { # Test inheritance with root and sub OUs - PolicyId := "GWS.COMMONCONTROLS.15.2v0.3" + PolicyId := CommonControlsId15_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -99,7 +99,7 @@ test_DataProcessing_OUs_Correct_V2 if { test_DataProcessing_OUs_Incorrect_V1 if { # Test incorrect root OU - PolicyId := "GWS.COMMONCONTROLS.15.2v0.3" + PolicyId := CommonControlsId15_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -132,7 +132,7 @@ test_DataProcessing_OUs_Incorrect_V1 if { test_DataProcessing_OUs_Incorrect_V2 if { # Test incorrect second-level OU - PolicyId := "GWS.COMMONCONTROLS.15.2v0.3" + PolicyId := CommonControlsId15_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -176,7 +176,7 @@ test_DataProcessing_OUs_Incorrect_V2 if { test_DataProcessing_OUs_Groups_Incorrect_V1 if { # Test for correct root OU but with an incorrect group event - PolicyId := "GWS.COMMONCONTROLS.15.2v0.3" + PolicyId := CommonControlsId15_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -220,7 +220,7 @@ test_DataProcessing_OUs_Groups_Incorrect_V1 if { test_DataProcessing_OUs_Groups_Incorrect_V2 if { # Test for correct root OU but with incorrect group events - PolicyId := "GWS.COMMONCONTROLS.15.2v0.3" + PolicyId := CommonControlsId15_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -276,7 +276,7 @@ test_DataProcessing_OUs_Groups_Incorrect_V2 if { test_DataProcessing_OUs_Groups_Incorrect_V3 if { # Test for both incorrect OUs and group events - PolicyId := "GWS.COMMONCONTROLS.15.2v0.3" + PolicyId := CommonControlsId15_2 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -336,11 +336,11 @@ test_DataProcessing_OUs_Groups_Incorrect_V3 if { # -# GWS.COMMONCONTROLS.15.3v0.3 +# GWS.COMMONCONTROLS.15.3 #-- test_Logs_Correct_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.15.3v0.3" + PolicyId := CommonControlsId15_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -368,7 +368,7 @@ test_Logs_Correct_V1 if { test_Logs_Correct_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.15.3v0.3" + PolicyId := CommonControlsId15_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -406,7 +406,7 @@ test_Logs_Correct_V2 if { test_Logs_Incorrect_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.15.3v0.3" + PolicyId := CommonControlsId15_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -438,7 +438,7 @@ test_Logs_Incorrect_V1 if { test_Logs_Incorrect_V2 if { # Test multiple events - PolicyId := "GWS.COMMONCONTROLS.15.3v0.3" + PolicyId := CommonControlsId15_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -480,7 +480,7 @@ test_Logs_Incorrect_V2 if { test_Logs_Incorrect_V3 if { # Test no relevent events - PolicyId := "GWS.COMMONCONTROLS.15.3v0.3" + PolicyId := CommonControlsId15_3 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -504,7 +504,7 @@ test_Logs_Incorrect_V3 if { test_Logs_Incorrect_V4 if { # Test multiple ous - PolicyId := "GWS.COMMONCONTROLS.15.3v0.3" + PolicyId := CommonControlsId15_3 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -543,4 +543,4 @@ test_Logs_Incorrect_V4 if { "" ]) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/commoncontrols/commoncontrols16_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols16_test.rego similarity index 93% rename from Testing/RegoTests/commoncontrols/commoncontrols16_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols16_test.rego index 6e015a3e..f251cf5c 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols16_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols16_test.rego @@ -1,441 +1,441 @@ -package commoncontrols -import future.keywords - -# -# GWS.COMMONCONTROLS.16.1v0.3 -#-- - -test_Unlisted_Correct_V1 if { - # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.16.1v0.3" - Output := tests with input as { - "commoncontrols_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "DISABLE_UNLISTED_SERVICES"}, - {"name": "NEW_VALUE", "value": "true"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." -} - -test_Unlisted_Correct_V2 if { - # Test inheritance - PolicyId := "GWS.COMMONCONTROLS.16.1v0.3" - Output := tests with input as { - "commoncontrols_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "DISABLE_UNLISTED_SERVICES"}, - {"name": "NEW_VALUE", "value": "true"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - }, - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "DISABLE_UNLISTED_SERVICES"}, - {"name": "NEW_VALUE", "value": "INHERIT_FROM_PARENT"}, - {"name": "ORG_UNIT_NAME", "value": "Test Second-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." -} - -test_Unlisted_Incorrect_V1 if { - PolicyId := "GWS.COMMONCONTROLS.16.1v0.3" - Output := tests with input as { - "commoncontrols_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "DISABLE_UNLISTED_SERVICES"}, - {"name": "NEW_VALUE", "value": "false"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Access to additional services without individual control is turned on
  • ", - "
" - ]) -} - -test_Unlisted_Incorrect_V2 if { - # Test no events - PolicyId := "GWS.COMMONCONTROLS.16.1v0.3" - Output := tests with input as { - "commoncontrols_logs": {"items": [ - - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. While we are unable ", - "to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) -} -#-- - -# -# GWS.COMMONCONTROLS.16.2v0.3 -#-- - -test_EarlyAccessApps_OUs_Correct_V1 if { - # Test 1 correct event - PolicyId := "GWS.COMMONCONTROLS.16.2v0.3" - Output := tests with input as { - "commoncontrols_logs": {"items": [ - { - "id": {"time": "2024-10-15T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "Early Access Apps"}, - {"name": "NEW_VALUE", "value": "false"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." -} - -test_EarlyAccessApps_OUs_Correct_V2 if { - # Test inheritance with root and sub OUs - PolicyId := "GWS.COMMONCONTROLS.16.2v0.3" - Output := tests with input as { - "commoncontrols_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "Early Access Apps"}, - {"name": "NEW_VALUE", "value": "false"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - }, - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "Early Access Apps"}, - {"name": "NEW_VALUE", "value": "INHERIT_FROM_PARENT"}, - {"name": "ORG_UNIT_NAME", "value": "Test Second-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." -} - -test_EarlyAccessApps_OUs_Incorrect_V1 if { - # Test incorrect root OU - PolicyId := "GWS.COMMONCONTROLS.16.2v0.3" - Output := tests with input as { - "commoncontrols_logs": {"items": [ - { - "id": {"time": "2024-05-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "Early Access Apps"}, - {"name": "NEW_VALUE", "value": "true"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Service status is ON
  • ", - "
" - ]) -} - -test_EarlyAccessApps_OUs_Incorrect_V2 if { - # Test incorrect second-level OU - PolicyId := "GWS.COMMONCONTROLS.16.2v0.3" - Output := tests with input as { - "commoncontrols_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "Early Access Apps"}, - {"name": "NEW_VALUE", "value": "false"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - }, - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "Early Access Apps"}, - {"name": "NEW_VALUE", "value": "true"}, - {"name": "ORG_UNIT_NAME", "value": "Test Second-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Second-Level OU: Service status is ON
  • ", - "
" - ]) -} - -test_EarlyAccessApps_OUs_Correct_Groups_Incorrect_V1 if { - # Test for correct root OU but with an incorrect group event - PolicyId := "GWS.COMMONCONTROLS.16.2v0.3" - Output := tests with input as { - "commoncontrols_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "Early Access Apps"}, - {"name": "NEW_VALUE", "value": "false"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - }, - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "Early Access Apps"}, - {"name": "NEW_VALUE", "value": "true"}, - {"name": "GROUP_EMAIL", "value": "Test Group 1"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following groups are non-compliant:
    ", - "
  • Test Group 1: Service status is ON
  • ", - "
" - ]) -} - -test_EarlyAccessApps_OUs_Correct_Groups_Incorrect_V2 if { - # Test for correct root OU but with incorrect group events - PolicyId := "GWS.COMMONCONTROLS.16.2v0.3" - Output := tests with input as { - "commoncontrols_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "Early Access Apps"}, - {"name": "NEW_VALUE", "value": "false"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - }, - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "Early Access Apps"}, - {"name": "NEW_VALUE", "value": "true"}, - {"name": "GROUP_EMAIL", "value": "Test Group 1"}, - ] - }] - }, - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "Early Access Apps"}, - {"name": "NEW_VALUE", "value": "true"}, - {"name": "GROUP_EMAIL", "value": "Test Group 2"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following groups are non-compliant:
    ", - "
  • Test Group 1: Service status is ON
  • ", - "
  • Test Group 2: Service status is ON
  • ", - "
" - ]) -} - -test_EarlyAccessApps_OUs_Groups_Incorrect_V1 if { - # Test for both incorrect OUs and group events - PolicyId := "GWS.COMMONCONTROLS.16.2v0.3" - Output := tests with input as { - "commoncontrols_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "Early Access Apps"}, - {"name": "NEW_VALUE", "value": "true"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - }, - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "Early Access Apps"}, - {"name": "NEW_VALUE", "value": "true"}, - {"name": "GROUP_EMAIL", "value": "Test Group 1"}, - ] - }] - }, - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - {"name": "SERVICE_NAME", "value": "Early Access Apps"}, - {"name": "NEW_VALUE", "value": "true"}, - {"name": "GROUP_EMAIL", "value": "Test Group 2"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Service status is ON
  • ", - "

", - "The following groups are non-compliant:
    ", - "
  • Test Group 1: Service status is ON
  • ", - "
  • Test Group 2: Service status is ON
  • ", - "
" - ]) -} -#-- \ No newline at end of file +package commoncontrols +import future.keywords + +# +# GWS.COMMONCONTROLS.16.1 +#-- + +test_Unlisted_Correct_V1 if { + # Test 1 event + PolicyId := CommonControlsId16_1 + Output := tests with input as { + "commoncontrols_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "DISABLE_UNLISTED_SERVICES"}, + {"name": "NEW_VALUE", "value": "true"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." +} + +test_Unlisted_Correct_V2 if { + # Test inheritance + PolicyId := CommonControlsId16_1 + Output := tests with input as { + "commoncontrols_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "DISABLE_UNLISTED_SERVICES"}, + {"name": "NEW_VALUE", "value": "true"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + }, + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "DISABLE_UNLISTED_SERVICES"}, + {"name": "NEW_VALUE", "value": "INHERIT_FROM_PARENT"}, + {"name": "ORG_UNIT_NAME", "value": "Test Second-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." +} + +test_Unlisted_Incorrect_V1 if { + PolicyId := CommonControlsId16_1 + Output := tests with input as { + "commoncontrols_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "DISABLE_UNLISTED_SERVICES"}, + {"name": "NEW_VALUE", "value": "false"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + not RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == concat("", [ + "The following OUs are non-compliant:
    ", + "
  • Test Top-Level OU: Access to additional services without individual control is turned on
  • ", + "
" + ]) +} + +test_Unlisted_Incorrect_V2 if { + # Test no events + PolicyId := CommonControlsId16_1 + Output := tests with input as { + "commoncontrols_logs": {"items": [ + + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + not RuleOutput[0].RequirementMet + RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == concat("", [ + "No relevant event in the current logs for the top-level OU, Test Top-Level OU. While we are unable ", + "to determine the state from the logs, the default setting ", + "is non-compliant; manual check recommended." + ]) +} +#-- + +# +# GWS.COMMONCONTROLS.16.2 +#-- + +test_EarlyAccessApps_OUs_Correct_V1 if { + # Test 1 correct event + PolicyId := CommonControlsId16_2 + Output := tests with input as { + "commoncontrols_logs": {"items": [ + { + "id": {"time": "2024-10-15T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "Early Access Apps"}, + {"name": "NEW_VALUE", "value": "false"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." +} + +test_EarlyAccessApps_OUs_Correct_V2 if { + # Test inheritance with root and sub OUs + PolicyId := CommonControlsId16_2 + Output := tests with input as { + "commoncontrols_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "Early Access Apps"}, + {"name": "NEW_VALUE", "value": "false"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + }, + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "Early Access Apps"}, + {"name": "NEW_VALUE", "value": "INHERIT_FROM_PARENT"}, + {"name": "ORG_UNIT_NAME", "value": "Test Second-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." +} + +test_EarlyAccessApps_OUs_Incorrect_V1 if { + # Test incorrect root OU + PolicyId := CommonControlsId16_2 + Output := tests with input as { + "commoncontrols_logs": {"items": [ + { + "id": {"time": "2024-05-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "Early Access Apps"}, + {"name": "NEW_VALUE", "value": "true"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + not RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == concat("", [ + "The following OUs are non-compliant:
    ", + "
  • Test Top-Level OU: Service status is ON
  • ", + "
" + ]) +} + +test_EarlyAccessApps_OUs_Incorrect_V2 if { + # Test incorrect second-level OU + PolicyId := CommonControlsId16_2 + Output := tests with input as { + "commoncontrols_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "Early Access Apps"}, + {"name": "NEW_VALUE", "value": "false"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + }, + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "Early Access Apps"}, + {"name": "NEW_VALUE", "value": "true"}, + {"name": "ORG_UNIT_NAME", "value": "Test Second-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + not RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == concat("", [ + "The following OUs are non-compliant:
    ", + "
  • Test Second-Level OU: Service status is ON
  • ", + "
" + ]) +} + +test_EarlyAccessApps_OUs_Correct_Groups_Incorrect_V1 if { + # Test for correct root OU but with an incorrect group event + PolicyId := CommonControlsId16_2 + Output := tests with input as { + "commoncontrols_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "Early Access Apps"}, + {"name": "NEW_VALUE", "value": "false"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + }, + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "Early Access Apps"}, + {"name": "NEW_VALUE", "value": "true"}, + {"name": "GROUP_EMAIL", "value": "Test Group 1"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + not RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == concat("", [ + "The following groups are non-compliant:
    ", + "
  • Test Group 1: Service status is ON
  • ", + "
" + ]) +} + +test_EarlyAccessApps_OUs_Correct_Groups_Incorrect_V2 if { + # Test for correct root OU but with incorrect group events + PolicyId := CommonControlsId16_2 + Output := tests with input as { + "commoncontrols_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "Early Access Apps"}, + {"name": "NEW_VALUE", "value": "false"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + }, + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "Early Access Apps"}, + {"name": "NEW_VALUE", "value": "true"}, + {"name": "GROUP_EMAIL", "value": "Test Group 1"}, + ] + }] + }, + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "Early Access Apps"}, + {"name": "NEW_VALUE", "value": "true"}, + {"name": "GROUP_EMAIL", "value": "Test Group 2"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + not RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == concat("", [ + "The following groups are non-compliant:
    ", + "
  • Test Group 1: Service status is ON
  • ", + "
  • Test Group 2: Service status is ON
  • ", + "
" + ]) +} + +test_EarlyAccessApps_OUs_Groups_Incorrect_V1 if { + # Test for both incorrect OUs and group events + PolicyId := CommonControlsId16_2 + Output := tests with input as { + "commoncontrols_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "Early Access Apps"}, + {"name": "NEW_VALUE", "value": "true"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + }, + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "Early Access Apps"}, + {"name": "NEW_VALUE", "value": "true"}, + {"name": "GROUP_EMAIL", "value": "Test Group 1"}, + ] + }] + }, + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + {"name": "SERVICE_NAME", "value": "Early Access Apps"}, + {"name": "NEW_VALUE", "value": "true"}, + {"name": "GROUP_EMAIL", "value": "Test Group 2"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + not RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == concat("", [ + "The following OUs are non-compliant:
    ", + "
  • Test Top-Level OU: Service status is ON
  • ", + "

", + "The following groups are non-compliant:
    ", + "
  • Test Group 1: Service status is ON
  • ", + "
  • Test Group 2: Service status is ON
  • ", + "
" + ]) +} +#-- diff --git a/Testing/RegoTests/commoncontrols/commoncontrols17_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols17_test.rego similarity index 94% rename from Testing/RegoTests/commoncontrols/commoncontrols17_test.rego rename to scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols17_test.rego index f526c30b..4753534b 100644 --- a/Testing/RegoTests/commoncontrols/commoncontrols17_test.rego +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols17_test.rego @@ -2,11 +2,11 @@ package commoncontrols import future.keywords # -# GWS.COMMONCONTROLS.17.1v0.3 +# GWS.COMMONCONTROLS.17.1 #-- test_MPA_Correct_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.17.1v0.3" + PolicyId := CommonControlsId17_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -38,7 +38,7 @@ test_MPA_Correct_V1 if { test_MPA_Incorrect_V1 if { # Test 1 event - PolicyId := "GWS.COMMONCONTROLS.17.1v0.3" + PolicyId := CommonControlsId17_1 Output := tests with input as { "commoncontrols_logs": {"items": [ { @@ -74,7 +74,7 @@ test_MPA_Incorrect_V1 if { test_MPA_Incorrect_V2 if { # Test no relevent events - PolicyId := "GWS.COMMONCONTROLS.17.1v0.3" + PolicyId := CommonControlsId17_1 Output := tests with input as { "commoncontrols_logs": {"items": [ @@ -95,4 +95,4 @@ test_MPA_Incorrect_V2 if { "is non-compliant; manual check recommended." ]) } -#-- \ No newline at end of file +#-- diff --git a/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api04_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api04_test.rego new file mode 100644 index 00000000..39c7d038 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api04_test.rego @@ -0,0 +1,64 @@ +package commoncontrols + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodCaseInputApi04 := { + "policies": { + "topOU": { + "security_session_controls": { + "webSessionDuration": "43200s" + }, + }, + "nextOU": { + }, + "thirdOU": { + "security_session_controls": { + "webSessionDuration": "700m" + }, + }, + "fourthOU": { + "security_session_controls": { + "webSessionDuration": "12H" + }, + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BaseCaseInputApi04 := { + "policies": { + "topOU": { + "security_session_controls": { + "webSessionDuration": "43200s" + }, + }, + "nextOU": { + "security_session_controls": { + "webSessionDuration": "800m" + }, + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_CCAPI_ReAuth_Comply_1 if { + PolicyId := CommonControlsId4_1 + Output := tests with input as GoodCaseInputApi04 + + PassTestResult(PolicyId, Output) +} + +test_CCAPI_ReAuth_NonComply_1 if { + PolicyId := CommonControlsId4_1 + Output := tests with input as BaseCaseInputApi04 + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage4_1(GetFriendlyValue4_1(800 * 60))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api05_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api05_test.rego new file mode 100644 index 00000000..024b2c81 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api05_test.rego @@ -0,0 +1,160 @@ +package commoncontrols + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodCaseInputApi05 := { + "policies": { + "topOU": { + "security_password": { + "allowedStrength": "STRONG", + "minimumLength": 15, + "maximumLength": 100, + "enforceRequirementsAtLogin": true, + "allowReuse": false, + "expirationDuration": "0s" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadCaseInputApi05 := { + "policies": { + "topOU": { + "security_password": { + "allowedStrength": "WEAK", + "minimumLength": 6, + "maximumLength": 100, + "enforceRequirementsAtLogin": false, + "allowReuse": true, + "expirationDuration": "10h" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadCaseInputApi05a := { + "policies": { + "topOU": { + "security_password": { + "allowedStrength": "STRONG", + "minimumLength": 15, + "maximumLength": 100, + "enforceRequirementsAtLogin": true, + "allowReuse": false, + "expirationDuration": "0s" + } + }, + "nextOU": { + "security_password": { + "minimumLength": 13, + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_CCAPI_PwdStrength_Comply_1 if { + PolicyId := CommonControlsId5_1 + Output := tests with input as GoodCaseInputApi05 + + PassTestResult(PolicyId, Output) +} + +test_CCAPI_PwdStrength_NonComply_1 if { + PolicyId := CommonControlsId5_1 + Output := tests with input as BadCaseInputApi05 + + failedOU := [{"Name": "topOU", + "Value": "Password strength is WEAK, not STRONG"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_CCAPI_PwdLength_Comply_1 if { + PolicyId := CommonControlsId5_2 + Output := tests with input as GoodCaseInputApi05 + + PassTestResult(PolicyId, Output) +} + +test_CCAPI_PwdLength_NonComply_1 if { + PolicyId := CommonControlsId5_2 + Output := tests with input as BadCaseInputApi05 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage5_2(6)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_CCAPI_PwdSuggestLength_Comply_1 if { + PolicyId := CommonControlsId5_3 + Output := tests with input as GoodCaseInputApi05 + + PassTestResult(PolicyId, Output) +} + +test_CCAPI_PwdSuggestLength_NonComply_1 if { + PolicyId := CommonControlsId5_3 + Output := tests with input as BadCaseInputApi05a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage5_3(13)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_CCAPI_PwdNextLogin_Comply_1 if { + PolicyId := CommonControlsId5_4 + Output := tests with input as GoodCaseInputApi05 + + PassTestResult(PolicyId, Output) +} + +test_CCAPI_PwdNextLogin_NonComply_1 if { + PolicyId := CommonControlsId5_4 + Output := tests with input as BadCaseInputApi05 + + failedOU := [{"Name": "topOU", + "Value": "Enforce password policy at next sign-in is OFF"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_CCAPI_PwdReuse_Comply_1 if { + PolicyId := CommonControlsId5_5 + Output := tests with input as GoodCaseInputApi05 + + PassTestResult(PolicyId, Output) +} + +test_CCAPI_PwdReuse_NonComply_1 if { + PolicyId := CommonControlsId5_5 + Output := tests with input as BadCaseInputApi05 + + failedOU := [{"Name": "topOU", + "Value": "Allow password reuse is ON"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_CCAPI_PwdResetFrequency_Comply_1 if { + PolicyId := CommonControlsId5_6 + Output := tests with input as GoodCaseInputApi05 + + PassTestResult(PolicyId, Output) +} + +test_CCAPI_PwdResetFrequency_NonComply_1 if { + PolicyId := CommonControlsId5_6 + Output := tests with input as BadCaseInputApi05 + + failedOU := [{"Name": "topOU", + "Value": "Password reset frequency is 10h"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api08_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api08_test.rego new file mode 100644 index 00000000..a0cb0958 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api08_test.rego @@ -0,0 +1,47 @@ +package commoncontrols + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodCaseInputApi08 := { + "policies": { + "topOU": { + "security_super_admin_account_recovery": { + "enableAccountRecovery": false + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadCaseInputApi08 := { + "policies": { + "topOU": { + "security_super_admin_account_recovery": { + "enableAccountRecovery": true + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_CCAPI_SAAcctRecovery_Comply_1 if { + PolicyId := CommonControlsId8_1 + Output := tests with input as GoodCaseInputApi08 + + PassTestResult(PolicyId, Output) +} + +test_CCAPI_SAAcctRecovery_NonComply_1 if { + PolicyId := CommonControlsId8_1 + Output := tests with input as BadCaseInputApi08 + + failedOU := [{"Name": "topOU", + "Value": "Allow super admins to recover their account is ON"}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api10_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api10_test.rego new file mode 100644 index 00000000..f6004759 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api10_test.rego @@ -0,0 +1,43 @@ +package commoncontrols + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodCaseInputApi10 := { + "policies": { + "topOU": { + "security_less_secure_apps": {"allowLessSecureApps": false} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadCaseInputApi10 := { + "policies": { + "topOU": { + "security_less_secure_apps": {"allowLessSecureApps": true} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_LessSecureApps_Correct_1 if { + PolicyId := CommonControlsId10_5 + Output := tests with input as GoodCaseInputApi10 + + PassTestResult(PolicyId, Output) +} + +test_LessSecureApps_Incorrect_1 if { + PolicyId := CommonControlsId10_5 + Output := tests with input as BadCaseInputApi10 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage10_5}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api11_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api11_test.rego new file mode 100644 index 00000000..621124e7 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api11_test.rego @@ -0,0 +1,59 @@ +package commoncontrols + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodCaseInputApi11 := { + "policies": { + "topOU": { + "workspace_marketplace_apps_access_options": { + "accessLevel": "ALLOW_LISTED_APPS", + "allowAllInternalApps": false} + }, + "nextOU": { + "workspace_marketplace_apps_access_options": { + "accessLevel": "ALLOW_NONE", + "allowAllInternalApps": true} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadCaseInputApi11 := { + "policies": { + "topOU": { + "workspace_marketplace_apps_access_options": { + "accessLevel": "ALLOW_ALL", + "allowAllInternalApps": true} + }, + "nextOU": { + "workspace_marketplace_apps_access_options": { + "accessLevel": "ALLOW_LISTED_APPS", + "allowAllInternalApps": true} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_MarketplaceApps_Correct_1 if { + PolicyId := CommonControlsId11_1 + Output := tests with input as GoodCaseInputApi11 + + PassTestResult(PolicyId, Output) +} + +test_MarketplaceApps_Incorrect_1 if { + PolicyId := CommonControlsId11_1 + Output := tests with input as BadCaseInputApi11 + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage11_1(false)}, + {"Name": "topOU", + "Value": NonComplianceMessage11_1(true)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api12_test.rego b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api12_test.rego new file mode 100644 index 00000000..31a7eda7 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/commoncontrols/commoncontrols_api12_test.rego @@ -0,0 +1,120 @@ +package commoncontrols + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodCaseInputApi12 := { + "policies": { + "topOU": { + "takeout_service_status": {"serviceState": "ENABLED"}, + "blogger_user_takeout": {"takeoutStatus": "DISABLED"}, + "books_user_takeout": {"takeoutStatus": "DISABLED"}, + "location_history_user_takeout": {"takeoutStatus": "DISABLED"}, + "maps_user_takeout": {"takeoutStatus": "DISABLED"}, + "pay_user_takeout": {"takeoutStatus": "DISABLED"}, + "photos_user_takeout": {"takeoutStatus": "DISABLED"}, + "play_console_user_takeout": {"takeoutStatus": "DISABLED"}, + "play_user_takeout": {"takeoutStatus": "DISABLED"}, + "youtube_user_takeout": {"takeoutStatus": "DISABLED"} + }, + "nextOU": { + "takeout_service_status": {"serviceState": "DISABLED"}, + "blogger_user_takeout": {"takeoutStatus": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadCaseInputApi12 := { + "policies": { + "topOU": { + "takeout_service_status": {"serviceState": "ENABLED"}, + "blogger_user_takeout": {"takeoutStatus": "ENABLED"}, + "books_user_takeout": {"takeoutStatus": "ENABLED"}, + "location_history_user_takeout": {"takeoutStatus": "ENABLED"}, + "maps_user_takeout": {"takeoutStatus": "ENABLED"}, + "pay_user_takeout": {"takeoutStatus": "ENABLED"}, + "photos_user_takeout": {"takeoutStatus": "ENABLED"}, + "play_console_user_takeout": {"takeoutStatus": "ENABLED"}, + "play_user_takeout": {"takeoutStatus": "ENABLED"}, + "youtube_user_takeout": {"takeoutStatus": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadCaseInputApi12a := { + "policies": { + "topOU": { + "takeout_service_status": {"serviceState": "ENABLED"}, + "blogger_user_takeout": {"takeoutStatus": "DISABLED"}, + "books_user_takeout": {"takeoutStatus": "DISABLED"}, + "location_history_user_takeout": {"takeoutStatus": "DISABLED"}, + "maps_user_takeout": {"takeoutStatus": "DISABLED"}, + "pay_user_takeout": {"takeoutStatus": "DISABLED"}, + "photos_user_takeout": {"takeoutStatus": "DISABLED"}, + "play_console_user_takeout": {"takeoutStatus": "DISABLED"}, + "play_user_takeout": {"takeoutStatus": "DISABLED"}, + "youtube_user_takeout": {"takeoutStatus": "DISABLED"} + }, + "nextOU": { + "location_history_user_takeout": {"takeoutStatus": "ENABLED"}, + "play_console_user_takeout": {"takeoutStatus": "ENABLED"}, + "youtube_user_takeout": {"takeoutStatus": "ENABLED"} + }, + "thirdOU": { + "blogger_user_takeout": {"takeoutStatus": "ENABLED"}, + "maps_user_takeout": {"takeoutStatus": "ENABLED"}, + "play_user_takeout": {"takeoutStatus": "ENABLED"}, + "youtube_user_takeout": {"takeoutStatus": "DISABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +TakeoutApps(keys) := [Takeout[key] | some key in keys] + +test_Takeout_Correct_1 if { + PolicyId := CommonControlsId12_1 + Output := tests with input as GoodCaseInputApi12 + + PassTestResult(PolicyId, Output) +} + +test_Takeout_Incorrect_1 if { + PolicyId := CommonControlsId12_1 + Output := tests with input as BadCaseInputApi12 + + EnabledApps := ["blogger", + "books", + "location_history", + "maps", + "pay", + "photos", + "play_console", + "play", + "youtube"] + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage12_1(TakeoutApps(EnabledApps))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_Takeout_Incorrect_2 if { + PolicyId := CommonControlsId12_1 + Output := tests with input as BadCaseInputApi12a + + EnabledApps1 := ["location_history", "play_console", "youtube"] + EnabledApps2 := ["blogger", "maps", "play"] + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage12_1(TakeoutApps(EnabledApps1))}, + {"Name": "thirdOU", + "Value": NonComplianceMessage12_1(TakeoutApps(EnabledApps2))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/Testing/RegoTests/drive/drive01_test.rego b/scubagoggles/Testing/RegoTests/drive/drive01_test.rego similarity index 71% rename from Testing/RegoTests/drive/drive01_test.rego rename to scubagoggles/Testing/RegoTests/drive/drive01_test.rego index 3050979e..e9e36c50 100644 --- a/Testing/RegoTests/drive/drive01_test.rego +++ b/scubagoggles/Testing/RegoTests/drive/drive01_test.rego @@ -1,12 +1,16 @@ package drive + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.DRIVEDOCS.1.1v0.3 +# GWS.DRIVEDOCS.1.1 #-- test_Sharing_Correct_V1 if { # Test sharing setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.1.1v0.3" + PolicyId := DriveId1_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -25,16 +29,12 @@ test_Sharing_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Sharing_Correct_V2 if { # Test sharing setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.DRIVEDOCS.1.1v0.3" + PolicyId := DriveId1_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -63,16 +63,12 @@ test_Sharing_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Sharing_Correct_V3 if { # Test sharing setting when there's multiple OUs - PolicyId := "GWS.DRIVEDOCS.1.1v0.3" + PolicyId := DriveId1_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -101,16 +97,12 @@ test_Sharing_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Sharing_Incorrect_V1 if { # Test sharing setting when there are no relevant events - PolicyId := "GWS.DRIVEDOCS.1.1v0.3" + PolicyId := DriveId1_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -129,20 +121,12 @@ test_Sharing_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_Sharing_Incorrect_V2 if { # Test sharing setting when there's only one event and it's wrong - PolicyId := "GWS.DRIVEDOCS.1.1v0.3" + PolicyId := DriveId1_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -161,19 +145,14 @@ test_Sharing_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Files owned by users or shared drives can ", - "be shared outside of the organization
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1("SHARING_ALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Sharing_Incorrect_V3 if { # Test sharing setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.DRIVEDOCS.1.1v0.3" + PolicyId := DriveId1_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -202,19 +181,14 @@ test_Sharing_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Files owned by users or shared drives can ", - "be shared outside of the organization
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1("SHARING_ALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Sharing_Incorrect_V4 if { # Test sharing setting when there are multiple OUs and secondary is wrong - PolicyId := "GWS.DRIVEDOCS.1.1v0.3" + PolicyId := DriveId1_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -243,19 +217,14 @@ test_Sharing_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Secondary OU: ", - "Files owned by users or shared drives can ", - "be shared outside of the organization
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1("SHARING_ALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Sharing_Incorrect_V5 if { # Test sharing setting when the top OU is not present but there is another - PolicyId := "GWS.DRIVEDOCS.1.1v0.3" + PolicyId := DriveId1_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -274,24 +243,16 @@ test_Sharing_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } #-- # -# GWS.DRIVEDOCS.1.2v0.3 +# GWS.DRIVEDOCS.1.2 #-- test_Receiving_Correct_V1 if { # Test sharing setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.1.2v0.3" + PolicyId := DriveId1_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -310,16 +271,12 @@ test_Receiving_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Receiving_Correct_V2 if { # Test sharing setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.DRIVEDOCS.1.2v0.3" + PolicyId := DriveId1_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -348,16 +305,12 @@ test_Receiving_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Receiving_Correct_V3 if { # Test sharing setting when there's multiple OUs - PolicyId := "GWS.DRIVEDOCS.1.2v0.3" + PolicyId := DriveId1_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -386,16 +339,12 @@ test_Receiving_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Receiving_Incorrect_V1 if { # Test sharing setting when there are no relevant events - PolicyId := "GWS.DRIVEDOCS.1.2v0.3" + PolicyId := DriveId1_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -414,20 +363,12 @@ test_Receiving_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_Receiving_Incorrect_V2 if { # Test sharing setting when there's only one event and it's wrong - PolicyId := "GWS.DRIVEDOCS.1.2v0.3" + PolicyId := DriveId1_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -446,17 +387,14 @@ test_Receiving_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Users can recieve files outside the domain
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": EventNonComplianceMessage1_2(EventGetFriendlyValue1_2("SHARING_ALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Receiving_Incorrect_V3 if { # Test sharing setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.DRIVEDOCS.1.2v0.3" + PolicyId := DriveId1_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -485,18 +423,14 @@ test_Receiving_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Users can recieve files outside the domain
"]) - + failedOU := [{"Name": "Test Top-Level OU", + "Value": EventNonComplianceMessage1_2(EventGetFriendlyValue1_2("SHARING_ALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Receiving_Incorrect_V4 if { # Test sharing setting when there are multiple OUs, top OU is compliant but secondary isn't - PolicyId := "GWS.DRIVEDOCS.1.2v0.3" + PolicyId := DriveId1_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -525,17 +459,14 @@ test_Receiving_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Secondary OU: Users can recieve files outside the domain
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": EventNonComplianceMessage1_2(EventGetFriendlyValue1_2("SHARING_ALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Receiving_Incorrect_V5 if { # Test sharing setting when top level OU is not present - PolicyId := "GWS.DRIVEDOCS.1.2v0.3" + PolicyId := DriveId1_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -554,23 +485,16 @@ test_Receiving_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } # -# GWS.DRIVEDOCS.1.3v0.3 +# GWS.DRIVEDOCS.1.3 #-- + test_Warnings_Correct_V1 if { # Test sharing setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.1.3v0.3" + PolicyId := DriveId1_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -589,16 +513,12 @@ test_Warnings_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Warnings_Correct_V2 if { # Test sharing setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.DRIVEDOCS.1.3v0.3" + PolicyId := DriveId1_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -627,16 +547,12 @@ test_Warnings_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Warnings_Correct_V3 if { # Test sharing setting when there's multiple OUs - PolicyId := "GWS.DRIVEDOCS.1.3v0.3" + PolicyId := DriveId1_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -665,16 +581,12 @@ test_Warnings_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Warnings_Incorrect_V1 if { # Test sharing setting when there are no relevant events - PolicyId := "GWS.DRIVEDOCS.1.3v0.3" + PolicyId := DriveId1_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -693,20 +605,12 @@ test_Warnings_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_Warnings_Incorrect_V2 if { # Test sharing setting when there's only one event and it's wrong - PolicyId := "GWS.DRIVEDOCS.1.3v0.3" + PolicyId := DriveId1_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -725,17 +629,14 @@ test_Warnings_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: External Sharing Warning is Disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": EventNonComplianceMessage1_3(EventGetFriendlyValue1_3("SHARING_ALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -test_Warningsr_Incorrect_V3 if { +test_Warnings_Incorrect_V3 if { # Test sharing setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.DRIVEDOCS.1.3v0.3" + PolicyId := DriveId1_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -764,17 +665,14 @@ test_Warningsr_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: External Sharing Warning is Disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": EventNonComplianceMessage1_3(EventGetFriendlyValue1_3("SHARING_ALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Warnings_Incorrect_V4 if { # Test sharing setting when Top OU is correct but not secondary OU - PolicyId := "GWS.DRIVEDOCS.1.3v0.3" + PolicyId := DriveId1_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -803,17 +701,14 @@ test_Warnings_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Secondary OU: External Sharing Warning is Disabled
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": EventNonComplianceMessage1_3(EventGetFriendlyValue1_3("SHARING_ALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Warnings_Incorrect_V5 if { # Test sharing setting when Top OU is not present - PolicyId := "GWS.DRIVEDOCS.1.3v0.3" + PolicyId := DriveId1_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -832,23 +727,16 @@ test_Warnings_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } # -# GWS.DRIVEDOCS.1.4v0.3 +# GWS.DRIVEDOCS.1.4 #-- + test_NonGoogle_Correct_V1 if { # Test sharing setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.1.4v0.3" + PolicyId := DriveId1_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -877,16 +765,12 @@ test_NonGoogle_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_NonGoogle_Correct_V2 if { # Test sharing setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.DRIVEDOCS.1.4v0.3" + PolicyId := DriveId1_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -925,16 +809,12 @@ test_NonGoogle_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_NonGoogle_Correct_V3 if { # Test sharing setting when there's multiple OUs - PolicyId := "GWS.DRIVEDOCS.1.4v0.3" + PolicyId := DriveId1_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -983,16 +863,12 @@ test_NonGoogle_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_NonGoogle_Incorrect_V1 if { # Test sharing setting when there are no relevant events - PolicyId := "GWS.DRIVEDOCS.1.4v0.3" + PolicyId := DriveId1_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -1011,20 +887,12 @@ test_NonGoogle_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_NonGoogle_Incorrect_V2 if { # Test sharing setting when there's only one event and it's wrong - PolicyId := "GWS.DRIVEDOCS.1.4v0.3" + PolicyId := DriveId1_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -1053,19 +921,15 @@ test_NonGoogle_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "External sharing is enabled and ", - "items can be shared to non-google accounts
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": EventNonComplianceMessage1_4(EventGetFriendlyValue1_4("ANONYMOUS_PREVIEW", + "SHARING_ALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_NonGoogle_Incorrect_V3 if { # Test sharing setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.DRIVEDOCS.1.4v0.3" + PolicyId := DriveId1_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -1089,7 +953,7 @@ test_NonGoogle_Incorrect_V3 if { }] }, { - "id": {"time": "2021-13-23T00:02:28.672Z"}, + "id": {"time": "2021-13-23T00:02:28.672Z"}, # incorrect timestamp?? "events": [{ "parameters": [ {"name": "SETTING_NAME", "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS"}, @@ -1099,7 +963,7 @@ test_NonGoogle_Incorrect_V3 if { }] }, { - "id": {"time": "2022-14-24T00:02:28.672Z"}, + "id": {"time": "2022-14-24T00:02:28.672Z"}, # incorrect timestamp?? "events": [{ "parameters": [ {"name": "SETTING_NAME", "value": "SHARING_OUTSIDE_DOMAIN"}, @@ -1114,19 +978,15 @@ test_NonGoogle_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "External sharing is enabled and ", - "items can be shared to non-google accounts
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": EventNonComplianceMessage1_4(EventGetFriendlyValue1_4("ANONYMOUS_PREVIEW", + "SHARING_ALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_NonGoogle_Incorrect_V4 if { # Test sharing setting when Top OU is correct but not secondary OU - PolicyId := "GWS.DRIVEDOCS.1.4v0.3" + PolicyId := DriveId1_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -1175,19 +1035,15 @@ test_NonGoogle_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Secondary OU: ", - "External sharing is enabled and ", - "items can be shared to non-google accounts
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": EventNonComplianceMessage1_4(EventGetFriendlyValue1_4("ALLOWED", + "SHARING_ALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_NonGoogle_Incorrect_V5 if { # Test sharing setting when Top OU is not present - PolicyId := "GWS.DRIVEDOCS.1.4v0.3" + PolicyId := DriveId1_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -1218,11 +1074,12 @@ test_NonGoogle_Incorrect_V5 if { } # -# GWS.DRIVEDOCS.1.5v0.3 +# GWS.DRIVEDOCS.1.5 #-- + test_Link_Correct_V1 if { # Test sharing setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.1.5v0.3" + PolicyId := DriveId1_5 Output := tests with input as { "drive_logs": {"items": [ { @@ -1241,16 +1098,12 @@ test_Link_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Link_Correct_V2 if { # Test sharing setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.DRIVEDOCS.1.5v0.3" + PolicyId := DriveId1_5 Output := tests with input as { "drive_logs": {"items": [ { @@ -1279,16 +1132,12 @@ test_Link_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Link_Correct_V3 if { # Test sharing setting when there's multiple OUs - PolicyId := "GWS.DRIVEDOCS.1.5v0.3" + PolicyId := DriveId1_5 Output := tests with input as { "drive_logs": {"items": [ { @@ -1317,16 +1166,12 @@ test_Link_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Link_Incorrect_V1 if { # Test sharing setting when there are no relevant events - PolicyId := "GWS.DRIVEDOCS.1.5v0.3" + PolicyId := DriveId1_5 Output := tests with input as { "drive_logs": {"items": [ { @@ -1345,20 +1190,12 @@ test_Link_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_Link_Incorrect_V2 if { # Test sharing setting when there's only one event and it's wrong - PolicyId := "GWS.DRIVEDOCS.1.5v0.3" + PolicyId := DriveId1_5 Output := tests with input as { "drive_logs": {"items": [ { @@ -1377,16 +1214,14 @@ test_Link_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Published web content can be made visible to anyone with a link
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_5}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } + test_Link_Incorrect_V3 if { # Test sharing setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.DRIVEDOCS.1.5v0.3" + PolicyId := DriveId1_5 Output := tests with input as { "drive_logs": {"items": [ { @@ -1415,17 +1250,14 @@ test_Link_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Published web content can be made visible to anyone with a link
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_5}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Link_Incorrect_V4 if { # Test sharing setting when Top OU is correct but not secondary OU - PolicyId := "GWS.DRIVEDOCS.1.5v0.3" + PolicyId := DriveId1_5 Output := tests with input as { "drive_logs": {"items": [ { @@ -1454,17 +1286,14 @@ test_Link_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Secondary OU: Published web content can be made visible to anyone with a link
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage1_5}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Link_Incorrect_V5 if { # Test sharing setting when Top OU is not present - PolicyId := "GWS.DRIVEDOCS.1.5v0.3" + PolicyId := DriveId1_5 Output := tests with input as { "drive_logs": {"items": [ { @@ -1483,24 +1312,16 @@ test_Link_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } #-- # -# GWS.DRIVEDOCS.1.6v0.3 +# GWS.DRIVEDOCS.1.6 #-- test_SharingChecker_Correct_V1 if { # Test sharing setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.1.6v0.3" + PolicyId := DriveId1_6 Output := tests with input as { "drive_logs": {"items": [ { @@ -1519,16 +1340,12 @@ test_SharingChecker_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SharingChecker_Correct_V2 if { # Test setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.DRIVEDOCS.1.6v0.3" + PolicyId := DriveId1_6 Output := tests with input as { "drive_logs": {"items": [ { @@ -1557,16 +1374,12 @@ test_SharingChecker_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SharingChecker_Correct_V3 if { # Test sharing setting when there's multiple OUs - PolicyId := "GWS.DRIVEDOCS.1.6v0.3" + PolicyId := DriveId1_6 Output := tests with input as { "drive_logs": {"items": [ { @@ -1595,16 +1408,12 @@ test_SharingChecker_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SharingChecker_Incorrect_V1 if { # Test sharing setting when there are no relevant events - PolicyId := "GWS.DRIVEDOCS.1.6v0.3" + PolicyId := DriveId1_6 Output := tests with input as { "drive_logs": {"items": [ { @@ -1623,20 +1432,12 @@ test_SharingChecker_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_SharingChecker_Incorrect_V2 if { # Test sharing setting when there's only one event and it's wrong - PolicyId := "GWS.DRIVEDOCS.1.6v0.3" + PolicyId := DriveId1_6 Output := tests with input as { "drive_logs": {"items": [ { @@ -1655,19 +1456,14 @@ test_SharingChecker_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Access Checker allows users to share ", - "files to Recipients only, suggested target audience, or public (no Google account required)
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_6(GetFriendlyValue1_6("ALL"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SharingChecker_Incorrect_V3 if { # Test sharing setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.DRIVEDOCS.1.6v0.3" + PolicyId := DriveId1_6 Output := tests with input as { "drive_logs": {"items": [ { @@ -1696,19 +1492,14 @@ test_SharingChecker_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Access Checker allows users to share ", - "files to Recipients only, suggested target audience, or public (no Google account required)
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_6(GetFriendlyValue1_6("ALL"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SharingChecker_Incorrect_V4 if { # Test sharing setting when Top OU is correct but not secondary OU - PolicyId := "GWS.DRIVEDOCS.1.6v0.3" + PolicyId := DriveId1_6 Output := tests with input as { "drive_logs": {"items": [ { @@ -1737,19 +1528,14 @@ test_SharingChecker_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Secondary OU: ", - "Access Checker allows users to share ", - "files to Recipients only, or suggested target audience
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage1_6(GetFriendlyValue1_6("DOMAIN_OR_NAMED_PARTIES"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SharingChecker_Incorrect_V5 if { # Test sharing setting when Top OU is not present - PolicyId := "GWS.DRIVEDOCS.1.6v0.3" + PolicyId := DriveId1_6 Output := tests with input as { "drive_logs": {"items": [ { @@ -1768,23 +1554,16 @@ test_SharingChecker_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } # -# GWS.DRIVEDOCS.1.7v0.3 +# GWS.DRIVEDOCS.1.7 #-- + test_CrossDomain_Correct_V1 if { # Test sharing setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.1.7v0.3" + PolicyId := DriveId1_7 Output := tests with input as { "drive_logs": {"items": [ { @@ -1803,16 +1582,12 @@ test_CrossDomain_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_CrossDomain_Correct_V2 if { # Test sharing setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.DRIVEDOCS.1.7v0.3" + PolicyId := DriveId1_7 Output := tests with input as { "drive_logs": {"items": [ { @@ -1841,16 +1616,12 @@ test_CrossDomain_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_CrossDomain_Correct_V3 if { # Test sharing setting when there's multiple OUs - PolicyId := "GWS.DRIVEDOCS.1.7v0.3" + PolicyId := DriveId1_7 Output := tests with input as { "drive_logs": {"items": [ { @@ -1879,16 +1650,12 @@ test_CrossDomain_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_CrossDomain_Incorrect_V1 if { # Test sharing setting when there are no relevant events - PolicyId := "GWS.DRIVEDOCS.1.7v0.3" + PolicyId := DriveId1_7 Output := tests with input as { "drive_logs": {"items": [ { @@ -1907,20 +1674,12 @@ test_CrossDomain_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_CrossDomain_Incorrect_V2 if { # Test sharing setting when there's only one event and it's wrong - PolicyId := "GWS.DRIVEDOCS.1.7v0.3" + PolicyId := DriveId1_7 Output := tests with input as { "drive_logs": {"items": [ { @@ -1939,19 +1698,15 @@ test_CrossDomain_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ "The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Anyone can distribute content in the organization to outside the organization
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_7("Anyone")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_CrossDomain_Incorrect_V3 if { # Test sharing setting when there are multiple events and - # the most recent is wrong, set to anyone can distribute content. - PolicyId := "GWS.DRIVEDOCS.1.7v0.3" + # the most recent is wrong, set to anyone can distribute content. + PolicyId := DriveId1_7 Output := tests with input as { "drive_logs": {"items": [ { @@ -1980,19 +1735,15 @@ test_CrossDomain_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ "The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Anyone can distribute content in the organization to outside the organization
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_7("Anyone")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_CrossDomain_Incorrect_V4 if { # Test sharing setting when Top OU is correct but not secondary OU, # which is set to Anyone in the Organization - PolicyId := "GWS.DRIVEDOCS.1.7v0.3" + PolicyId := DriveId1_7 Output := tests with input as { "drive_logs": {"items": [ { @@ -2021,19 +1772,14 @@ test_CrossDomain_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Secondary OU: ", - "Anyone can distribute content in the organization to outside the organization
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage1_7("Anyone")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } - test_CrossDomain_Incorrect_V5 if { # Test sharing setting when Top OU is not present - PolicyId := "GWS.DRIVEDOCS.1.7v0.3" + PolicyId := DriveId1_7 Output := tests with input as { "drive_logs": {"items": [ { @@ -2052,21 +1798,13 @@ test_CrossDomain_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_CrossDomain_Incorrect_V6 if { # Test sharing setting when there are multiple events and # the most recent event is wrong, set to only users in the organization - PolicyId := "GWS.DRIVEDOCS.1.7v0.3" + PolicyId := DriveId1_7 Output := tests with input as { "drive_logs": {"items": [ { @@ -2095,22 +1833,19 @@ test_CrossDomain_Incorrect_V6 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Only users inside the organization can distribute content outside of the organization
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_7("Only users inside the organization")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- # -# GWS.DRIVEDOCS.1.8v0.3 +# GWS.DRIVEDOCS.1.8 #-- + test_Default_Correct_V1 if { # Test sharing setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.1.8v0.3" + PolicyId := DriveId1_8 Output := tests with input as { "drive_logs": {"items": [ { @@ -2129,16 +1864,12 @@ test_Default_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Default_Correct_V2 if { # Test sharing setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.DRIVEDOCS.1.8v0.3" + PolicyId := DriveId1_8 Output := tests with input as { "drive_logs": {"items": [ { @@ -2167,16 +1898,12 @@ test_Default_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Default_Correct_V3 if { # Test sharing setting when there's multiple OUs - PolicyId := "GWS.DRIVEDOCS.1.8v0.3" + PolicyId := DriveId1_8 Output := tests with input as { "drive_logs": {"items": [ { @@ -2205,16 +1932,12 @@ test_Default_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Default_Incorrect_V1 if { # Test sharing setting when there are no relevant events - PolicyId := "GWS.DRIVEDOCS.1.8v0.3" + PolicyId := DriveId1_8 Output := tests with input as { "drive_logs": {"items": [ { @@ -2233,20 +1956,12 @@ test_Default_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_Default_Incorrect_V2 if { # Test sharing setting when there's only one event and it's wrong - PolicyId := "GWS.DRIVEDOCS.1.8v0.3" + PolicyId := DriveId1_8 Output := tests with input as { "drive_logs": {"items": [ { @@ -2265,21 +1980,14 @@ test_Default_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:", - "
  • Test Top-Level OU: When users create items, the default access is set to: ", - "The primary target audience can search and find the item.
" - - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_8(GetFriendlyValue1_8("PUBLIC"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Default_Incorrect_V3 if { # Test sharing setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.DRIVEDOCS.1.8v0.3" + PolicyId := DriveId1_8 Output := tests with input as { "drive_logs": {"items": [ { @@ -2308,20 +2016,14 @@ test_Default_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:", - "
  • Test Top-Level OU: When users create items, the default access is set to: ", - "The primary target audience can search and find the item.
" - ]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_8(GetFriendlyValue1_8("PUBLIC"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Default_Incorrect_V4 if { # Test sharing setting when Top OU is correct but not secondary OU - PolicyId := "GWS.DRIVEDOCS.1.8v0.3" + PolicyId := DriveId1_8 Output := tests with input as { "drive_logs": {"items": [ { @@ -2350,21 +2052,14 @@ test_Default_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:", - "
  • Test Secondary OU: When users create items, the default access is set to: ", - "The primary target audience can search and find the item.
" - - ]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage1_8(GetFriendlyValue1_8("PUBLIC"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Default_Incorrect_V5 if { # Test sharing setting when Top OU is not present - PolicyId := "GWS.DRIVEDOCS.1.8v0.3" + PolicyId := DriveId1_8 Output := tests with input as { "drive_logs": {"items": [ { @@ -2383,20 +2078,12 @@ test_Default_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_Default_Incorrect_V6 if { # Test sharing setting when Top OU is correct but not secondary OU - PolicyId := "GWS.DRIVEDOCS.1.8v0.3" + PolicyId := DriveId1_8 Output := tests with input as { "drive_logs": {"items": [ { @@ -2425,15 +2112,7 @@ test_Default_Incorrect_V6 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:", - "
  • Test Secondary OU: When users create items,", - " the default access is set to: ", - "The primary target audience can access the item if they have the link
" - - ]) -} \ No newline at end of file + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage1_8(GetFriendlyValue1_8("PEOPLE_WITH_LINK"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/Testing/RegoTests/drive/drive02_test.rego b/scubagoggles/Testing/RegoTests/drive/drive02_test.rego similarity index 71% rename from Testing/RegoTests/drive/drive02_test.rego rename to scubagoggles/Testing/RegoTests/drive/drive02_test.rego index 79919ad8..d05bef03 100644 --- a/Testing/RegoTests/drive/drive02_test.rego +++ b/scubagoggles/Testing/RegoTests/drive/drive02_test.rego @@ -1,12 +1,17 @@ package drive + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.DRIVEDOCS.2.1v0.3 +# GWS.DRIVEDOCS.2.1 #-- + test_Managers_Correct_V1 if { # Test sharing setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.2.1v0.3" + PolicyId := DriveId2_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -25,16 +30,12 @@ test_Managers_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Managers_Correct_V2 if { # Test sharing setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.DRIVEDOCS.2.1v0.3" + PolicyId := DriveId2_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -63,16 +64,12 @@ test_Managers_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Managers_Correct_V3 if { # Test sharing setting when there's multiple OUs - PolicyId := "GWS.DRIVEDOCS.2.1v0.3" + PolicyId := DriveId2_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -101,16 +98,12 @@ test_Managers_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Managers_Incorrect_V1 if { # Test sharing setting when there are no relevant events - PolicyId := "GWS.DRIVEDOCS.2.1v0.3" + PolicyId := DriveId2_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -129,20 +122,12 @@ test_Managers_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_Managers_Incorrect_V2 if { # Test sharing setting when there's only one event and it's wrong - PolicyId := "GWS.DRIVEDOCS.2.1v0.3" + PolicyId := DriveId2_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -161,17 +146,14 @@ test_Managers_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Members with manager access can override shared drive settings.
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Managers_Incorrect_V3 if { # Test sharing setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.DRIVEDOCS.2.1v0.3" + PolicyId := DriveId2_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -200,17 +182,14 @@ test_Managers_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Members with manager access can override shared drive settings.
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Managers_Incorrect_V4 if { # Test sharing setting when top OU is correct but secondary isn't - PolicyId := "GWS.DRIVEDOCS.2.1v0.3" + PolicyId := DriveId2_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -239,17 +218,14 @@ test_Managers_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Secondary OU: Members with manager access can override shared drive settings.
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage2_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Managers_Incorrect_V5 if { # Test sharing setting when top OU is missing - PolicyId := "GWS.DRIVEDOCS.2.1v0.3" + PolicyId := DriveId2_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -268,23 +244,16 @@ test_Managers_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } # -# GWS.DRIVEDOCS.2.2v0.3 +# GWS.DRIVEDOCS.2.2 #-- + test_Outside_Correct_V1 if { # Test sharing setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.2.2v0.3" + PolicyId := DriveId2_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -306,16 +275,12 @@ test_Outside_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Outside_Correct_V2 if { # Test sharing setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.DRIVEDOCS.2.2v0.3" + PolicyId := DriveId2_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -350,16 +315,12 @@ test_Outside_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Outside_Correct_V3 if { # Test sharing setting when there's multiple OUs - PolicyId := "GWS.DRIVEDOCS.2.2v0.3" + PolicyId := DriveId2_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -394,16 +355,12 @@ test_Outside_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Outside_Incorrect_V1 if { # Test sharing setting when there are no relevant events - PolicyId := "GWS.DRIVEDOCS.2.2v0.3" + PolicyId := DriveId2_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -422,20 +379,12 @@ test_Outside_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_Outside_Incorrect_V2 if { # Test sharing setting when there's only one event and it's wrong - PolicyId := "GWS.DRIVEDOCS.2.2v0.3" + PolicyId := DriveId2_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -457,17 +406,14 @@ test_Outside_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Users outside the organization can access files in shared drives
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_2}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Outside_Incorrect_V3 if { # Test sharing setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.DRIVEDOCS.2.2v0.3" + PolicyId := DriveId2_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -502,17 +448,14 @@ test_Outside_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Users outside the organization can access files in shared drives
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_2}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Outside_Incorrect_V4 if { # Test sharing setting when top OU is correct but secondary isn't - PolicyId := "GWS.DRIVEDOCS.2.2v0.3" + PolicyId := DriveId2_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -547,17 +490,14 @@ test_Outside_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Secondary OU: Users outside the organization can access files in shared drives
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage2_2}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Outside_Incorrect_V5 if { # Test sharing setting when top OU is missing - PolicyId := "GWS.DRIVEDOCS.2.2v0.3" + PolicyId := DriveId2_2 Output := tests with input as { "drive_logs": {"items": [ { @@ -579,23 +519,16 @@ test_Outside_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } # -# GWS.DRIVEDOCS.2.3v0.3 +# GWS.DRIVEDOCS.2.3 #-- + test_SharedDrive_Correct_V1 if { # Test sharing setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.2.3v0.3" + PolicyId := DriveId2_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -617,16 +550,12 @@ test_SharedDrive_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SharedDrive_Correct_V2 if { # Test sharing setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.DRIVEDOCS.2.3v0.3" + PolicyId := DriveId2_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -661,16 +590,12 @@ test_SharedDrive_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SharedDrive_Correct_V3 if { # Test sharing setting when there's multiple OUs - PolicyId := "GWS.DRIVEDOCS.2.3v0.3" + PolicyId := DriveId2_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -705,16 +630,12 @@ test_SharedDrive_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SharedDrive_Incorrect_V1 if { # Test sharing setting when there are no relevant events - PolicyId := "GWS.DRIVEDOCS.2.3v0.3" + PolicyId := DriveId2_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -733,20 +654,12 @@ test_SharedDrive_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_SharedDrive_Incorrect_V2 if { # Test sharing setting when there's only one event and it's wrong - PolicyId := "GWS.DRIVEDOCS.2.3v0.3" + PolicyId := DriveId2_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -768,17 +681,14 @@ test_SharedDrive_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: People who aren't shared drive members can be added to files
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_3}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SharedDrive_Incorrect_V3 if { # Test sharing setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.DRIVEDOCS.2.3v0.3" + PolicyId := DriveId2_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -813,18 +723,14 @@ test_SharedDrive_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: People who aren't shared drive members can be added to files
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_3}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } - test_SharedDrive_Incorrect_V4 if { # Test sharing setting when top OU is correct but secondary isn't - PolicyId := "GWS.DRIVEDOCS.2.3v0.3" + PolicyId := DriveId2_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -859,17 +765,14 @@ test_SharedDrive_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Secondary OU: People who aren't shared drive members can be added to files
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage2_3}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SharedDrive_Incorrect_V5 if { # Test sharing setting when top OU is missing - PolicyId := "GWS.DRIVEDOCS.2.3v0.3" + PolicyId := DriveId2_3 Output := tests with input as { "drive_logs": {"items": [ { @@ -891,23 +794,16 @@ test_SharedDrive_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } # -# GWS.DRIVEDOCS.2.4v0.3 +# GWS.DRIVEDOCS.2.4 #-- + test_Viewers_Correct_V1 if { # Test sharing setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.2.4v0.3" + PolicyId := DriveId2_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -926,16 +822,12 @@ test_Viewers_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Viewers_Correct_V2 if { # Test sharing setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.DRIVEDOCS.2.4v0.3" + PolicyId := DriveId2_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -964,16 +856,12 @@ test_Viewers_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Viewers_Correct_V3 if { # Test sharing setting when there's multiple OUs - PolicyId := "GWS.DRIVEDOCS.2.4v0.3" + PolicyId := DriveId2_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -1002,16 +890,12 @@ test_Viewers_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Viewers_Incorrect_V1 if { # Test sharing setting when there are no relevant events - PolicyId := "GWS.DRIVEDOCS.2.4v0.3" + PolicyId := DriveId2_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -1030,20 +914,12 @@ test_Viewers_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_Viewers_Incorrect_V2 if { # Test sharing setting when there's only one event and it's wrong - PolicyId := "GWS.DRIVEDOCS.2.4v0.3" + PolicyId := DriveId2_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -1062,17 +938,14 @@ test_Viewers_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Viewers and commenters are allowed to download, print, and copy files
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_4}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Viewers_Incorrect_V3 if { # Test sharing setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.DRIVEDOCS.2.4v0.3" + PolicyId := DriveId2_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -1101,18 +974,14 @@ test_Viewers_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Viewers and commenters are allowed to download, print, and copy files
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_4}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Viewers_Incorrect_V4 if { # Test sharing setting when top OU is correct but secondary isn't - PolicyId := "GWS.DRIVEDOCS.2.4v0.3" + PolicyId := DriveId2_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -1141,18 +1010,14 @@ test_Viewers_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Secondary OU: ", - "Viewers and commenters are allowed to download, print, and copy files
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage2_4}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Viewers_Incorrect_V5 if { # Test sharing setting when top OU is missing - PolicyId := "GWS.DRIVEDOCS.2.4v0.3" + PolicyId := DriveId2_4 Output := tests with input as { "drive_logs": {"items": [ { @@ -1171,13 +1036,5 @@ test_Viewers_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) -} \ No newline at end of file + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) +} diff --git a/Testing/RegoTests/drive/drive03_test.rego b/scubagoggles/Testing/RegoTests/drive/drive03_test.rego similarity index 80% rename from Testing/RegoTests/drive/drive03_test.rego rename to scubagoggles/Testing/RegoTests/drive/drive03_test.rego index b49e9986..430d547e 100644 --- a/Testing/RegoTests/drive/drive03_test.rego +++ b/scubagoggles/Testing/RegoTests/drive/drive03_test.rego @@ -1,12 +1,17 @@ package drive + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.DRIVEDOCS.3.1v0.3 +# GWS.DRIVEDOCS.3.1 #-- + test_Sharing_Correct_V1 if { # Test sharing setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.3.1v0.3" + PolicyId := DriveId3_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -38,16 +43,12 @@ test_Sharing_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Sharing_Correct_V2 if { # Test sharing setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.DRIVEDOCS.3.1v0.3" + PolicyId := DriveId3_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -92,16 +93,12 @@ test_Sharing_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Sharing_Correct_V3 if { # Test sharing setting when there's multiple OUs - PolicyId := "GWS.DRIVEDOCS.3.1v0.3" + PolicyId := DriveId3_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -156,16 +153,12 @@ test_Sharing_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Sharing_Incorrect_V1 if { # Test sharing setting when there are no relevant events - PolicyId := "GWS.DRIVEDOCS.3.1v0.3" + PolicyId := DriveId3_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -184,20 +177,12 @@ test_Sharing_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_Sharing_Incorrect_V2 if { # Test sharing setting when there's only one event and it's wrong - PolicyId := "GWS.DRIVEDOCS.3.1v0.3" + PolicyId := DriveId3_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -230,18 +215,14 @@ test_Sharing_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Users are allowed to remove/apply the security update for files they own or manage
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("", "true")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Sharing_Incorrect_V3 if { # Test sharing setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.DRIVEDOCS.3.1v0.3" + PolicyId := DriveId3_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -286,18 +267,14 @@ test_Sharing_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Users are allowed to remove/apply the security update for files they own or manage
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("", "true")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Sharing_Incorrect_V4 if { # Test sharing setting when top level ou is correct but secondary isn't - PolicyId := "GWS.DRIVEDOCS.3.1v0.3" + PolicyId := DriveId3_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -352,18 +329,14 @@ test_Sharing_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Secondary OU: ", - "Users are allowed to remove/apply the security update for files they own or manage
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage3_1("", "true")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Sharing_Incorrect_V5 if { # Test sharing setting when top level ou is missing - PolicyId := "GWS.DRIVEDOCS.3.1v0.3" + PolicyId := DriveId3_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -395,13 +368,5 @@ test_Sharing_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } diff --git a/Testing/RegoTests/drive/drive04_test.rego b/scubagoggles/Testing/RegoTests/drive/drive04_test.rego similarity index 70% rename from Testing/RegoTests/drive/drive04_test.rego rename to scubagoggles/Testing/RegoTests/drive/drive04_test.rego index 7f8f0d5a..8c249e06 100644 --- a/Testing/RegoTests/drive/drive04_test.rego +++ b/scubagoggles/Testing/RegoTests/drive/drive04_test.rego @@ -1,12 +1,17 @@ package drive + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.DRIVEDOCS.4.1v0.3 +# GWS.DRIVEDOCS.4.1 #-- + test_Security_Correct_V1 if { # Test security setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.4.1v0.3" + PolicyId := DriveId4_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -25,16 +30,12 @@ test_Security_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Security_Correct_V2 if { # Test security setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.DRIVEDOCS.4.1v0.3" + PolicyId := DriveId4_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -63,16 +64,12 @@ test_Security_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Security_Correct_V3 if { # Test security setting when there's multiple OUs - PolicyId := "GWS.DRIVEDOCS.4.1v0.3" + PolicyId := DriveId4_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -101,16 +98,12 @@ test_Security_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Security_Incorrect_V1 if { # Test security setting when there are no relevant events - PolicyId := "GWS.DRIVEDOCS.4.1v0.3" + PolicyId := DriveId4_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -129,20 +122,12 @@ test_Security_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_Security_Incorrect_V2 if { # Test security setting when there's only one event and it's wrong - PolicyId := "GWS.DRIVEDOCS.4.1v0.3" + PolicyId := DriveId4_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -161,17 +146,14 @@ test_Security_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Drive SDK is enabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Security_Incorrect_V3 if { # Test security setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.DRIVEDOCS.4.1v0.3" + PolicyId := DriveId4_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -200,17 +182,14 @@ test_Security_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Drive SDK is enabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Security_Incorrect_V4 if { # Test security setting when top level OU is right but secondary isn't - PolicyId := "GWS.DRIVEDOCS.4.1v0.3" + PolicyId := DriveId4_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -239,17 +218,14 @@ test_Security_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Secondary OU: Drive SDK is enabled
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage4_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Security_Incorrect_V5 if { # Test security setting when top level OU is missing - PolicyId := "GWS.DRIVEDOCS.4.1v0.3" + PolicyId := DriveId4_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -268,13 +244,5 @@ test_Security_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) -} \ No newline at end of file + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} diff --git a/Testing/RegoTests/drive/drive05_test.rego b/scubagoggles/Testing/RegoTests/drive/drive05_test.rego similarity index 69% rename from Testing/RegoTests/drive/drive05_test.rego rename to scubagoggles/Testing/RegoTests/drive/drive05_test.rego index bd7133d3..1c735152 100644 --- a/Testing/RegoTests/drive/drive05_test.rego +++ b/scubagoggles/Testing/RegoTests/drive/drive05_test.rego @@ -1,12 +1,17 @@ package drive + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.DRIVEDOCS.5.1v0.3 +# GWS.DRIVEDOCS.5.1 #-- + test_Sharing_Correct_V1 if { # Test sharing setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.5.1v0.3" + PolicyId := DriveId5_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -25,16 +30,12 @@ test_Sharing_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Sharing_Correct_V2 if { # Test sharing setting when there's multiple events and the most most recent is correct - PolicyId := "GWS.DRIVEDOCS.5.1v0.3" + PolicyId := DriveId5_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -63,16 +64,12 @@ test_Sharing_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Sharing_Correct_V3 if { # Test sharing setting when there's multiple OUs - PolicyId := "GWS.DRIVEDOCS.5.1v0.3" + PolicyId := DriveId5_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -101,16 +98,12 @@ test_Sharing_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Sharing_Incorrect_V1 if { # Test sharing setting when there are no relevant events - PolicyId := "GWS.DRIVEDOCS.5.1v0.3" + PolicyId := DriveId5_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -129,20 +122,12 @@ test_Sharing_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_Sharing_Incorrect_V2 if { # Test sharing setting when there's only one event and it's wrong - PolicyId := "GWS.DRIVEDOCS.5.1v0.3" + PolicyId := DriveId5_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -161,17 +146,14 @@ test_Sharing_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Users can install Google Docs add-ons from add-ons store.
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Sharing_Incorrect_V3 if { # Test sharing setting when there are multiple events and the most recent is wrong - PolicyId := "GWS.DRIVEDOCS.5.1v0.3" + PolicyId := DriveId5_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -200,17 +182,14 @@ test_Sharing_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Users can install Google Docs add-ons from add-ons store.
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Sharing_Incorrect_V4 if { # Test sharing setting when top level OU is right but secondary isn't - PolicyId := "GWS.DRIVEDOCS.5.1v0.3" + PolicyId := DriveId5_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -239,17 +218,14 @@ test_Sharing_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Secondary OU: Users can install Google Docs add-ons from add-ons store.
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage5_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Sharing_Incorrect_V5 if { # Test sharing setting when top level OU is missing - PolicyId := "GWS.DRIVEDOCS.5.1v0.3" + PolicyId := DriveId5_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -268,13 +244,5 @@ test_Sharing_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) -} \ No newline at end of file + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} diff --git a/Testing/RegoTests/drive/drive06_test.rego b/scubagoggles/Testing/RegoTests/drive/drive06_test.rego similarity index 84% rename from Testing/RegoTests/drive/drive06_test.rego rename to scubagoggles/Testing/RegoTests/drive/drive06_test.rego index 2aac461b..b4fbdaa3 100644 --- a/Testing/RegoTests/drive/drive06_test.rego +++ b/scubagoggles/Testing/RegoTests/drive/drive06_test.rego @@ -1,12 +1,16 @@ package drive + import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.DRIVE.6.1v0.3 +# GWS.DRIVE.6.1 #-- + test_DriveFs_Setting_Correct_V1 if { # Test Drive setting when there's OU inhertitence setting - PolicyId := "GWS.DRIVEDOCS.6.1v0.3" + PolicyId := DriveId6_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -55,16 +59,12 @@ test_DriveFs_Setting_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_DriveFs_Setting_Correct_V2 if { # Test Drive setting when there's multiple events - PolicyId := "GWS.DRIVEDOCS.6.1v0.3" + PolicyId := DriveId6_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -103,16 +103,12 @@ test_DriveFs_Setting_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_DriveFs_Setting_Correct_V3 if { # Test Drive setting when there's multiple events and inherited OU setting - PolicyId := "GWS.DRIVEDOCS.6.1v0.3" + PolicyId := DriveId6_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -171,16 +167,12 @@ test_DriveFs_Setting_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_DriveFs_Setting_Correct_V4 if { # Test Drive setting when there's multiple events - PolicyId := "GWS.DRIVEDOCS.6.1v0.3" + PolicyId := DriveId6_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -209,16 +201,12 @@ test_DriveFs_Setting_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_DriveFs_Setting_InCorrect_V1 if { # Test Drive setting when there's only one event - PolicyId := "GWS.DRIVEDOCS.6.1v0.3" + PolicyId := DriveId6_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -247,17 +235,14 @@ test_DriveFs_Setting_InCorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Drive for Desktop is enabled and can be used on any device.
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage6_1(GetFriendlyValue6_1("false", "true"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_DriveFs_Setting_InCorrect_V2 if { # Test Drive setting when there's multiple events - PolicyId := "GWS.DRIVEDOCS.6.1v0.3" + PolicyId := DriveId6_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -306,17 +291,14 @@ test_DriveFs_Setting_InCorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Drive for Desktop is enabled and can be used on any device.
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage6_1(GetFriendlyValue6_1("false", "true"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_DriveFs_Setting_InCorrect_V3 if { # Test Drive setting when there's multiple events - PolicyId := "GWS.DRIVEDOCS.6.1v0.3" + PolicyId := DriveId6_1 Output := tests with input as { "drive_logs": {"items": [ { @@ -385,10 +367,7 @@ test_DriveFs_Setting_InCorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: Drive for Desktop is enabled and can be used on any device.
"]) -} \ No newline at end of file + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage6_1(GetFriendlyValue6_1("false", "true"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/drive/drive_api01_test.rego b/scubagoggles/Testing/RegoTests/drive/drive_api01_test.rego new file mode 100644 index 00000000..0287a06a --- /dev/null +++ b/scubagoggles/Testing/RegoTests/drive/drive_api01_test.rego @@ -0,0 +1,324 @@ +package drive + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodDriveApi01 := { + "policies": { + "topOU": { + "drive_and_docs_external_sharing": { + "accessCheckerSuggestions": "RECIPIENTS_ONLY", + "allowNonGoogleInvites": false, + "allowNonGoogleInvitesInAllowlistedDomains": false, + "allowPublishingFiles": false, + "allowReceivingExternalFiles": false, + "allowReceivingFilesOutsideAllowlistedDomains": true, + "allowedPartiesForDistributingContent": "NONE", + "externalSharingMode": "DISALLOWED", + "warnForExternalSharing": true, + "warnForSharingOutsideAllowlistedDomains": true + }, + "drive_and_docs_general_access_default": { + "defaultFileAccess": "PRIVATE_TO_OWNER" + }, + "drive_and_docs_service_status": {"serviceState": "ENABLED" + } + }, + "nextOU": { + "drive_and_docs_external_sharing": { + "allowNonGoogleInvites": true, + "allowReceivingExternalFiles": false + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadDriveApi01 := { + "policies": { + "topOU": { + "drive_and_docs_external_sharing": { + "accessCheckerSuggestions": "RECIPIENTS_OR_AUDIENCE_OR_PUBLIC", + "allowNonGoogleInvites": true, + "allowNonGoogleInvitesInAllowlistedDomains": false, + "allowPublishingFiles": true, + "allowReceivingExternalFiles": false, + "allowReceivingFilesOutsideAllowlistedDomains": true, + "allowedPartiesForDistributingContent": "ALL_ELIGIBLE_USERS", + "externalSharingMode": "ALLOWED", + "warnForExternalSharing": false, + "warnForSharingOutsideAllowlistedDomains": true + }, + "drive_and_docs_general_access_default": { + "defaultFileAccess": "PRIMARY_AUDIENCE_WITH_LINK" + }, + "drive_and_docs_service_status": {"serviceState": "ENABLED" + } + }, + "nextOU": { + "drive_and_docs_external_sharing": { + "externalSharingMode": "ALLOWLISTED_DOMAINS", + "warnForSharingOutsideAllowlistedDomains": false, + "allowNonGoogleInvitesInAllowlistedDomains": true + } + }, + "thirdOU": { + "drive_and_docs_external_sharing": { + "warnForExternalSharing": true + } + }, + "fourthOU": {"empty intentional?": "yes"} + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadDriveApi01a := { + "policies": { + "topOU": { + "drive_and_docs_external_sharing": { + "accessCheckerSuggestions": "RECIPIENTS_ONLY", + "allowNonGoogleInvites": false, + "allowNonGoogleInvitesInAllowlistedDomains": false, + "allowPublishingFiles": false, + "allowReceivingExternalFiles": false, + "allowReceivingFilesOutsideAllowlistedDomains": true, + "allowedPartiesForDistributingContent": "NONE", + "externalSharingMode": "DISALLOWED", + "warnForExternalSharing": false, + "warnForSharingOutsideAllowlistedDomains": true + }, + "drive_and_docs_service_status": {"serviceState": "ENABLED" + } + }, + "nextOU": { + "drive_and_docs_external_sharing": { + "accessCheckerSuggestions": "RECIPIENTS_OR_AUDIENCE", + "allowNonGoogleInvites": true, + "allowNonGoogleInvitesInAllowlistedDomains": true, + "allowPublishingFiles": true, + "allowReceivingExternalFiles": false, + "allowReceivingFilesOutsideAllowlistedDomains": true, + "allowedPartiesForDistributingContent": "ELIGIBLE_INTERNAL_USERS", + "externalSharingMode": "ALLOWLISTED_DOMAINS", + "warnForExternalSharing": false, + "warnForSharingOutsideAllowlistedDomains": true + }, + "drive_and_docs_general_access_default": { + "defaultFileAccess": "PRIMARY_AUDIENCE_WITH_LINK_OR_SEARCH" + }, + }, + "thirdOU": { + "drive_and_docs_external_sharing": { + "allowReceivingExternalFiles": true + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_ExtSharing_Correct_1 if { + PolicyId := DriveId1_1 + Output := tests with input as GoodDriveApi01 + + PassTestResult(PolicyId, Output) +} + +test_ExtSharing_Incorrect_1 if { + PolicyId := DriveId1_1 + Output := tests with input as BadDriveApi01 + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1("ALLOWLISTED_DOMAINS"))}, + {"Name": "topOU", + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1("ALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ExtSharing_Incorrect_2 if { + PolicyId := DriveId1_1 + Output := tests with input as BadDriveApi01a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1("ALLOWLISTED_DOMAINS"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ReceiveExt_Correct_1 if { + PolicyId := DriveId1_2 + Output := tests with input as GoodDriveApi01 + + PassTestResult(PolicyId, Output) +} + +test_ReceiveExt_Incorrect_1 if { + PolicyId := DriveId1_2 + Output := tests with input as BadDriveApi01a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage1_2(GetSharingValue("ALLOWLISTED_DOMAINS"))}, + {"Name": "thirdOU", + "Value": NonComplianceMessage1_2(GetSharingValue("DISALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_UserExtSharing_Correct_1 if { + PolicyId := DriveId1_3 + Output := tests with input as GoodDriveApi01 + + PassTestResult(PolicyId, Output) +} + +test_UserExtSharing_Incorrect_1 if { + PolicyId := DriveId1_3 + Output := tests with input as BadDriveApi01 + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage1_3(GetSharingValue("ALLOWLISTED_DOMAINS"))}, + {"Name": "topOU", + "Value": NonComplianceMessage1_3(GetSharingValue("ALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_NonGoogle_Correct_1 if { + PolicyId := DriveId1_4 + Output := tests with input as GoodDriveApi01 + + PassTestResult(PolicyId, Output) +} + +test_NonGoogle_Incorrect_1 if { + PolicyId := DriveId1_4 + Output := tests with input as BadDriveApi01 + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage1_4(GetSharingValue("ALLOWLISTED_DOMAINS"))}, + {"Name": "topOU", + "Value": NonComplianceMessage1_4(GetSharingValue("ALLOWED"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_NonGoogle_Incorrect_2 if { + PolicyId := DriveId1_4 + Output := tests with input as BadDriveApi01a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage1_4(GetSharingValue("ALLOWLISTED_DOMAINS"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_AllowPublish_Correct_1 if { + PolicyId := DriveId1_5 + Output := tests with input as GoodDriveApi01 + + PassTestResult(PolicyId, Output) +} + +test_AllowPublish_Incorrect_1 if { + PolicyId := DriveId1_5 + Output := tests with input as BadDriveApi01 + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage1_5}, + {"Name": "topOU", + "Value": NonComplianceMessage1_5}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_AllowPublish_Incorrect_2 if { + PolicyId := DriveId1_5 + Output := tests with input as BadDriveApi01a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage1_5}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_AccessCheck_Correct_1 if { + PolicyId := DriveId1_6 + Output := tests with input as GoodDriveApi01 + + PassTestResult(PolicyId, Output) +} + +test_AccessCheck_Incorrect_1 if { + PolicyId := DriveId1_6 + Output := tests with input as BadDriveApi01 + + value := "RECIPIENTS_OR_AUDIENCE_OR_PUBLIC" + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage1_6(GetFriendlyValue1_6(value))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_AccessCheck_Incorrect_2 if { + PolicyId := DriveId1_6 + Output := tests with input as BadDriveApi01a + + value := "RECIPIENTS_OR_AUDIENCE" + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage1_6(GetFriendlyValue1_6(value))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_MoveContent_Correct_1 if { + PolicyId := DriveId1_7 + Output := tests with input as GoodDriveApi01 + + PassTestResult(PolicyId, Output) +} + +test_MoveContent_Incorrect_1 if { + PolicyId := DriveId1_7 + Output := tests with input as BadDriveApi01 + + value := "ALL_ELIGIBLE_USERS" + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage1_7(GetFriendlyValue1_7(value))}, + {"Name": "topOU", + "Value": NonComplianceMessage1_7(GetFriendlyValue1_7(value))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_MoveContent_Incorrect_2 if { + PolicyId := DriveId1_7 + Output := tests with input as BadDriveApi01a + + value := "ELIGIBLE_INTERNAL_USERS" + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage1_7(GetFriendlyValue1_7(value))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_DefaultAccess_Correct_1 if { + PolicyId := DriveId1_8 + Output := tests with input as GoodDriveApi01 + + PassTestResult(PolicyId, Output) +} + +test_DefaultAccess_Incorrect_1 if { + PolicyId := DriveId1_8 + Output := tests with input as BadDriveApi01 + + value := "PRIMARY_AUDIENCE_WITH_LINK" + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage1_8(GetFriendlyValue1_8(value))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_DefaultAccess_Incorrect_2 if { + PolicyId := DriveId1_8 + Output := tests with input as BadDriveApi01a + + value := "PRIMARY_AUDIENCE_WITH_LINK_OR_SEARCH" + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage1_8(GetFriendlyValue1_8(value))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/drive/drive_api02_test.rego b/scubagoggles/Testing/RegoTests/drive/drive_api02_test.rego new file mode 100644 index 00000000..4e48a9f8 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/drive/drive_api02_test.rego @@ -0,0 +1,178 @@ +package drive + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodDriveApi02 := { + "policies": { + "topOU": { + "drive_and_docs_shared_drive_creation": { + "allowExternalUserAccess": false, + "allowManagersToOverrideSettings": false, + "allowNonMemberAccess": true, + "allowedPartiesForDownloadPrintCopy": "EDITORS_ONLY" + }, + "drive_and_docs_service_status": {"serviceState": "ENABLED" + } + }, + "nextOU": { + "drive_and_docs_external_sharing": { + "allowNonGoogleInvites": true, + "allowReceivingExternalFiles": false + } + }, + "thirdOU": { + "security_session_controls": { + "webSessionDuration": "700m" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadDriveApi02 := { + "policies": { + "topOU": { + "drive_and_docs_shared_drive_creation": { + "allowExternalUserAccess": true, + "allowManagersToOverrideSettings": true, + "allowNonMemberAccess": false, + "allowedPartiesForDownloadPrintCopy": "ALL" + }, + "drive_and_docs_service_status": {"serviceState": "ENABLED" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadDriveApi02a := { + "policies": { + "topOU": { + "drive_and_docs_shared_drive_creation": { + "allowExternalUserAccess": false, + "allowManagersToOverrideSettings": false, + "allowNonMemberAccess": true, + "allowedPartiesForDownloadPrintCopy": "EDITORS_ONLY" + }, + "drive_and_docs_service_status": {"serviceState": "ENABLED" + } + }, + "nextOU": { + "drive_and_docs_shared_drive_creation": { + "allowExternalUserAccess": true, + "allowManagersToOverrideSettings": true, + "allowNonMemberAccess": false, + "allowedPartiesForDownloadPrintCopy": "ALL" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_ManagerOverride_Correct_1 if { + PolicyId := DriveId2_1 + Output := tests with input as GoodDriveApi02 + + PassTestResult(PolicyId, Output) +} + +test_ManagerOverride_Incorrect_1 if { + PolicyId := DriveId2_1 + Output := tests with input as BadDriveApi02 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage2_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ManagerOverride_Incorrect_2 if { + PolicyId := DriveId2_1 + Output := tests with input as BadDriveApi02a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage2_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ExternalAccess_Correct_1 if { + PolicyId := DriveId2_2 + Output := tests with input as GoodDriveApi02 + + PassTestResult(PolicyId, Output) +} + +test_ExternalAccess_Incorrect_1 if { + PolicyId := DriveId2_2 + Output := tests with input as BadDriveApi02 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage2_2}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ExternalAccess_Incorrect_2 if { + PolicyId := DriveId2_2 + Output := tests with input as BadDriveApi02a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage2_2}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_NonMemberExternalAccess_Correct_1 if { + PolicyId := DriveId2_3 + Output := tests with input as GoodDriveApi02 + + PassTestResult(PolicyId, Output) +} + +test_NonMemberExternalAccess_1 if { + PolicyId := DriveId2_3 + Output := tests with input as BadDriveApi02 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage2_3}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_NonMemberExternalAccess_2 if { + PolicyId := DriveId2_3 + Output := tests with input as BadDriveApi02a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage2_3}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_AllowPrint_Correct_1 if { + PolicyId := DriveId2_4 + Output := tests with input as GoodDriveApi02 + + PassTestResult(PolicyId, Output) +} + +test_AllowPrint_Incorrect_1 if { + PolicyId := DriveId2_4 + Output := tests with input as BadDriveApi02 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage2_4}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_AllowPrint_Incorrect_2 if { + PolicyId := DriveId2_4 + Output := tests with input as BadDriveApi02a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage2_4}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/drive/drive_api03_test.rego b/scubagoggles/Testing/RegoTests/drive/drive_api03_test.rego new file mode 100644 index 00000000..864e356d --- /dev/null +++ b/scubagoggles/Testing/RegoTests/drive/drive_api03_test.rego @@ -0,0 +1,96 @@ +package drive + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodDriveApi03 := { + "policies": { + "topOU": { + "drive_and_docs_file_security_update": { + "allowUsersToManageUpdate": false, + "securityUpdate": "APPLY_TO_IMPACTED_FILES" + }, + "drive_and_docs_service_status": {"serviceState": "ENABLED" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadDriveApi03 := { + "policies": { + "topOU": { + "drive_and_docs_file_security_update": { + "allowUsersToManageUpdate": true, + "securityUpdate": "APPLY_TO_IMPACTED_FILES" + }, + "drive_and_docs_service_status": {"serviceState": "ENABLED" + } + }, + "nextOU": { + "drive_and_docs_file_security_update": { + "allowUsersToManageUpdate": false, + "securityUpdate": "REMOVE_FROM_IMPACTED_FILES" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadDriveApi03a := { + "policies": { + "topOU": { + "drive_and_docs_file_security_update": { + "allowUsersToManageUpdate": false, + "securityUpdate": "REMOVE_FROM_IMPACTED_FILES" + }, + "drive_and_docs_service_status": {"serviceState": "ENABLED" + } + }, + "nextOU": { + "drive_and_docs_file_security_update": { + "allowUsersToManageUpdate": true, + "securityUpdate": "APPLY_TO_IMPACTED_FILES" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_SecurityUpdate_Correct_1 if { + PolicyId := DriveId3_1 + Output := tests with input as GoodDriveApi03 + + PassTestResult(PolicyId, Output) +} + +test_SecurityUpdate_Incorrect_1 if { + PolicyId := DriveId3_1 + Output := tests with input as BadDriveApi03 + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage3_1("REMOVE_FROM_IMPACTED_FILES", + false)}, + {"Name": "topOU", + "Value": NonComplianceMessage3_1("", true)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_SecurityUpdate_Incorrect_2 if { + PolicyId := DriveId3_1 + Output := tests with input as BadDriveApi03a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage3_1("", true)}, + {"Name": "topOU", + "Value": NonComplianceMessage3_1("REMOVE_FROM_IMPACTED_FILES", + false)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/drive/drive_api04_test.rego b/scubagoggles/Testing/RegoTests/drive/drive_api04_test.rego new file mode 100644 index 00000000..1b342741 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/drive/drive_api04_test.rego @@ -0,0 +1,72 @@ +package drive + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodDriveApi04 := { + "policies": { + "topOU": { + "drive_and_docs_drive_sdk": {"enableDriveSdkApiAccess": false}, + "drive_and_docs_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadDriveApi04 := { + "policies": { + "topOU": { + "drive_and_docs_drive_sdk": {"enableDriveSdkApiAccess": true}, + "drive_and_docs_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "drive_and_docs_drive_sdk": {"enableDriveSdkApiAccess": false} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadDriveApi04a := { + "policies": { + "topOU": { + "drive_and_docs_drive_sdk": {"enableDriveSdkApiAccess": false}, + "drive_and_docs_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "drive_and_docs_drive_sdk": {"enableDriveSdkApiAccess": true} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_SecurityUpdate_Correct_1 if { + PolicyId := DriveId4_1 + Output := tests with input as GoodDriveApi04 + + PassTestResult(PolicyId, Output) +} + +test_SecurityUpdate_Incorrect_1 if { + PolicyId := DriveId4_1 + Output := tests with input as BadDriveApi04 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage4_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_SecurityUpdate_Incorrect_2 if { + PolicyId := DriveId4_1 + Output := tests with input as BadDriveApi04a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage4_1}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/drive/drive_api06_test.rego b/scubagoggles/Testing/RegoTests/drive/drive_api06_test.rego new file mode 100644 index 00000000..0ba124e6 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/drive/drive_api06_test.rego @@ -0,0 +1,89 @@ +package drive + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodDriveApi06 := { + "policies": { + "topOU": { + "drive_and_docs_drive_for_desktop": { + "allowDriveForDesktop": false, + "restrictToAuthorizedDevices": true + }, + "drive_and_docs_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "drive_and_docs_drive_for_desktop": { + "allowDriveForDesktop": true, + "restrictToAuthorizedDevices": true + }, + }, + "thirdOU": { + "drive_and_docs_drive_for_desktop": { + "restrictToAuthorizedDevices": false + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadDriveApi06 := { + "policies": { + "topOU": { + "drive_and_docs_drive_for_desktop": { + "allowDriveForDesktop": true, + "restrictToAuthorizedDevices": false + }, + "drive_and_docs_service_status": {"serviceState": "ENABLED"} + }, + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadDriveApi06a := { + "policies": { + "topOU": { + "drive_and_docs_drive_for_desktop": { + "allowDriveForDesktop": false, + "restrictToAuthorizedDevices": false + }, + "drive_and_docs_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "drive_and_docs_drive_for_desktop": {"allowDriveForDesktop": true} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_DriveDesktop_Correct_1 if { + PolicyId := DriveId6_1 + Output := tests with input as GoodDriveApi06 + + PassTestResult(PolicyId, Output) +} + +test_DriveDesktop_Incorrect_1 if { + PolicyId := DriveId6_1 + Output := tests with input as BadDriveApi06 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage6_1(GetFriendlyValue6_1(false, true))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_DriveDesktop_Incorrect_2 if { + PolicyId := DriveId6_1 + Output := tests with input as BadDriveApi06a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage6_1(GetFriendlyValue6_1(false, true))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/Testing/RegoTests/gmail/gmail01_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail01_test.rego similarity index 96% rename from Testing/RegoTests/gmail/gmail01_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail01_test.rego index c4fc5f7b..cfb15db5 100644 --- a/Testing/RegoTests/gmail/gmail01_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail01_test.rego @@ -1,13 +1,12 @@ package gmail import future.keywords - # -# GWS.GMAIL.1.1v0.3 +# GWS.GMAIL.1.1 #-- test_MailDelegation_Correct_V1 if { # Test mail delegation when there's only one event - PolicyId := "GWS.GMAIL.1.1v0.3" + PolicyId := GmailId1_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -35,7 +34,7 @@ test_MailDelegation_Correct_V1 if { test_MailDelegation_Correct_V2 if { # Test mail delegation when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.1.1v0.3" + PolicyId := GmailId1_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -73,7 +72,7 @@ test_MailDelegation_Correct_V2 if { test_MailDelegation_Correct_V3 if { # Test mail delegation when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.1.1v0.3" + PolicyId := GmailId1_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -111,7 +110,7 @@ test_MailDelegation_Correct_V3 if { test_MailDelegation_Incorrect_V1 if { # Test mail delegation when there are no relevant events - PolicyId := "GWS.GMAIL.1.1v0.3" + PolicyId := GmailId1_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -143,7 +142,7 @@ test_MailDelegation_Incorrect_V1 if { test_MailDelegation_Incorrect_V2 if { # Test mail delegation when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.1.1v0.3" + PolicyId := GmailId1_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -172,7 +171,7 @@ test_MailDelegation_Incorrect_V2 if { test_MailDelegation_Incorrect_V3 if { # Test mail delegation when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.1.1v0.3" + PolicyId := GmailId1_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -211,7 +210,7 @@ test_MailDelegation_Incorrect_V3 if { test_MailDelegation_Incorrect_V4 if { # Test mail delegation when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.1.1v0.3" + PolicyId := GmailId1_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -240,7 +239,7 @@ test_MailDelegation_Incorrect_V4 if { test_MailDelegation_Incorrect_V5 if { # Test mail delegation when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.1.1v0.3" + PolicyId := GmailId1_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -276,4 +275,4 @@ test_MailDelegation_Incorrect_V5 if { RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", "Mail delegation is set to enabled
"]) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/gmail/gmail02_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail02_test.rego similarity index 94% rename from Testing/RegoTests/gmail/gmail02_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail02_test.rego index fe2f341f..23a854b0 100644 --- a/Testing/RegoTests/gmail/gmail02_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail02_test.rego @@ -1,13 +1,12 @@ package gmail import future.keywords - # -# GWS.GMAIL.2.1v0.3 +# GWS.GMAIL.2.1 #-- test_DKIM_Correct_V1 if { # Test DKIM when there's only one domain - PolicyId := "GWS.GMAIL.2.1v0.3" + PolicyId := GmailId2_1 Output := tests with input as { "dkim_records": [ { @@ -27,7 +26,7 @@ test_DKIM_Correct_V1 if { test_DKIM_Correct_V2 if { # Test DKIM when there's multiple domains - PolicyId := "GWS.GMAIL.2.1v0.3" + PolicyId := GmailId2_1 Output := tests with input as { "dkim_records": [ { @@ -51,7 +50,7 @@ test_DKIM_Correct_V2 if { test_DKIM_Incorrect_V1 if { # Test DKIM when there's multiple domains and only one is correct - PolicyId := "GWS.GMAIL.2.1v0.3" + PolicyId := GmailId2_1 Output := tests with input as { "dkim_records": [ { @@ -75,7 +74,7 @@ test_DKIM_Incorrect_V1 if { test_DKIM_Incorrect_V2 if { # Test DKIM when there's only one domain and it's wrong - PolicyId := "GWS.GMAIL.2.1v0.3" + PolicyId := GmailId2_1 Output := tests with input as { "dkim_records": [ { @@ -92,4 +91,4 @@ test_DKIM_Incorrect_V2 if { not RuleOutput[0].NoSuchEvent RuleOutput[0].ReportDetails == "1 of 1 agency domain(s) found in violation: test.name." } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/gmail/gmail03_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail03_test.rego similarity index 93% rename from Testing/RegoTests/gmail/gmail03_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail03_test.rego index 83aeae3c..8b93e711 100644 --- a/Testing/RegoTests/gmail/gmail03_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail03_test.rego @@ -1,13 +1,12 @@ package gmail import future.keywords - # -# GWS.GMAIL.3.1v0.3 +# GWS.GMAIL.3.1 #-- test_SPF_Correct_V1 if { # Test SPF when there's only one domain - PolicyId := "GWS.GMAIL.3.1v0.3" + PolicyId := GmailId3_1 Output := tests with input as { "spf_records": [ { @@ -27,7 +26,7 @@ test_SPF_Correct_V1 if { test_SPF_Correct_V2 if { # Test SPF when there's multiple domains - PolicyId := "GWS.GMAIL.3.1v0.3" + PolicyId := GmailId3_1 Output := tests with input as { "spf_records": [ { @@ -51,7 +50,7 @@ test_SPF_Correct_V2 if { test_SPF_Correct_V3 if { # Test SPF redirect - PolicyId := "GWS.GMAIL.3.1v0.3" + PolicyId := GmailId3_1 Output := tests with input as { "spf_records": [ { @@ -71,7 +70,7 @@ test_SPF_Correct_V3 if { test_SPF_Incorrect_V1 if { # Test SPF when there's multiple domains and only one is correct - PolicyId := "GWS.GMAIL.3.1v0.3" + PolicyId := GmailId3_1 Output := tests with input as { "spf_records": [ { @@ -95,7 +94,7 @@ test_SPF_Incorrect_V1 if { test_SPF_Incorrect_V2 if { # Test SPF when there's only one domain and it's wrong - PolicyId := "GWS.GMAIL.3.1v0.3" + PolicyId := GmailId3_1 Output := tests with input as { "spf_records": [ { @@ -116,7 +115,7 @@ test_SPF_Incorrect_V2 if { test_SPF_Incorrect_V3 if { # Test softfail - PolicyId := "GWS.GMAIL.3.1v0.3" + PolicyId := GmailId3_1 Output := tests with input as { "spf_records": [ { @@ -136,7 +135,7 @@ test_SPF_Incorrect_V3 if { test_SPF_Incorrect_V4 if { # Test no "all" mechanism - PolicyId := "GWS.GMAIL.3.1v0.3" + PolicyId := GmailId3_1 Output := tests with input as { "spf_records": [ { @@ -153,4 +152,4 @@ test_SPF_Incorrect_V4 if { not RuleOutput[0].NoSuchEvent RuleOutput[0].ReportDetails == "1 of 1 agency domain(s) found in violation: test.name." } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/gmail/gmail04_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail04_test.rego similarity index 94% rename from Testing/RegoTests/gmail/gmail04_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail04_test.rego index 9086e231..307ff9de 100644 --- a/Testing/RegoTests/gmail/gmail04_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail04_test.rego @@ -1,13 +1,12 @@ package gmail import future.keywords - # -# GWS.GMAIL.4.1v0.3 +# GWS.GMAIL.4.1 #-- test_DMARC_Correct_V1 if { # Test DMARC when there's only one domain - PolicyId := "GWS.GMAIL.4.1v0.3" + PolicyId := GmailId4_1 Output := tests with input as { "dmarc_records": [ { @@ -29,7 +28,7 @@ test_DMARC_Correct_V1 if { test_DMARC_Correct_V2 if { # Test DMARC when there's multiple domains - PolicyId := "GWS.GMAIL.4.1v0.3" + PolicyId := GmailId4_1 Output := tests with input as { "dmarc_records": [ { @@ -57,7 +56,7 @@ test_DMARC_Correct_V2 if { test_DMARC_Incorrect_V1 if { # Test DMARC when there's multiple domains and only one is correct - PolicyId := "GWS.GMAIL.4.1v0.3" + PolicyId := GmailId4_1 Output := tests with input as { "dmarc_records": [ { @@ -83,7 +82,7 @@ test_DMARC_Incorrect_V1 if { test_DMARC_Incorrect_V2 if { # Test DMARC when there's only one domain and it's wrong - PolicyId := "GWS.GMAIL.4.1v0.3" + PolicyId := GmailId4_1 Output := tests with input as { "dmarc_records": [ { @@ -102,12 +101,12 @@ test_DMARC_Incorrect_V2 if { } # -# GWS.GMAIL.4.2v0.3 +# GWS.GMAIL.4.2 #-- test_DMARCMessageReject_Correct_V1 if { # Test DMARC when there's only one domain - PolicyId := "GWS.GMAIL.4.2v0.3" + PolicyId := GmailId4_2 Output := tests with input as { "dmarc_records": [ { @@ -129,7 +128,7 @@ test_DMARCMessageReject_Correct_V1 if { test_DMARCMessageReject_Correct_V2 if { # Test DMARC when there's multiple domains - PolicyId := "GWS.GMAIL.4.2v0.3" + PolicyId := GmailId4_2 Output := tests with input as { "dmarc_records": [ { @@ -157,7 +156,7 @@ test_DMARCMessageReject_Correct_V2 if { test_DMARCMessageReject_Incorrect_V1 if { # Test DMARC when there's multiple domains and only one is correct - PolicyId := "GWS.GMAIL.4.2v0.3" + PolicyId := GmailId4_2 Output := tests with input as { "dmarc_records": [ { @@ -183,7 +182,7 @@ test_DMARCMessageReject_Incorrect_V1 if { test_DMARCMessageReject_Incorrect_V2 if { # Test DMARC when there's only one domain and it's wrong - PolicyId := "GWS.GMAIL.4.2v0.3" + PolicyId := GmailId4_2 Output := tests with input as { "dmarc_records": [ { @@ -202,12 +201,12 @@ test_DMARCMessageReject_Incorrect_V2 if { } # -# GWS.GMAIL.4.3v0.3 +# GWS.GMAIL.4.3 #-- test_DMARCAggregateReports_Correct_V1 if { # Test DMARC when there's only one domain - PolicyId := "GWS.GMAIL.4.3v0.3" + PolicyId := GmailId4_3 Output := tests with input as { "dmarc_records": [ { @@ -229,7 +228,7 @@ test_DMARCAggregateReports_Correct_V1 if { test_DMARCAggregateReports_Correct_V2 if { # Test DMARC when there's multiple domains - PolicyId := "GWS.GMAIL.4.3v0.3" + PolicyId := GmailId4_3 Output := tests with input as { "dmarc_records": [ { @@ -257,7 +256,7 @@ test_DMARCAggregateReports_Correct_V2 if { test_DMARCAggregateReports_Incorrect_V1 if { # Test DMARC when there's multiple domains and only one is correct - PolicyId := "GWS.GMAIL.4.3v0.3" + PolicyId := GmailId4_3 Output := tests with input as { "dmarc_records": [ { @@ -283,7 +282,7 @@ test_DMARCAggregateReports_Incorrect_V1 if { test_DMARCAggregateReports_Incorrect_V2 if { # Test DMARC when there's only one domain and it's wrong - PolicyId := "GWS.GMAIL.4.3v0.3" + PolicyId := GmailId4_3 Output := tests with input as { "dmarc_records": [ { @@ -302,12 +301,12 @@ test_DMARCAggregateReports_Incorrect_V2 if { } # -# GWS.GMAIL.4.4v0.3 +# GWS.GMAIL.4.4 #-- test_DMARCAgencyPOC_Correct_V1 if { # Test DMARC when there's only one domain - PolicyId := "GWS.GMAIL.4.4v0.3" + PolicyId := GmailId4_4 Output := tests with input as { "dmarc_records": [ { @@ -329,7 +328,7 @@ test_DMARCAgencyPOC_Correct_V1 if { test_DMARCAgencyPOC_Correct_V2 if { # Test DMARC when there's multiple domains - PolicyId := "GWS.GMAIL.4.4v0.3" + PolicyId := GmailId4_4 Output := tests with input as { "dmarc_records": [ { @@ -357,7 +356,7 @@ test_DMARCAgencyPOC_Correct_V2 if { test_DMARCAgencyPOC_Incorrect_V1 if { # Test DMARC when there's multiple domains and only one is correct - PolicyId := "GWS.GMAIL.4.4v0.3" + PolicyId := GmailId4_4 Output := tests with input as { "dmarc_records": [ { @@ -383,7 +382,7 @@ test_DMARCAgencyPOC_Incorrect_V1 if { test_DMARCAgencyPOC_Incorrect_V2 if { # Test DMARC when there's only one domain and it's wrong - PolicyId := "GWS.GMAIL.4.4v0.3" + PolicyId := GmailId4_4 Output := tests with input as { "dmarc_records": [ { @@ -400,4 +399,4 @@ test_DMARCAgencyPOC_Incorrect_V2 if { not RuleOutput[0].NoSuchEvent RuleOutput[0].ReportDetails == "1 of 1 agency domain(s) found in violation: test.name." } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/gmail/gmail05_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail05_test.rego similarity index 76% rename from Testing/RegoTests/gmail/gmail05_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail05_test.rego index 0496c0f4..45d3366b 100644 --- a/Testing/RegoTests/gmail/gmail05_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail05_test.rego @@ -1,13 +1,17 @@ package gmail + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.GMAIL.5.1v0.3 +# GWS.GMAIL.5.1 #-- test_Encrypted_Correct_V1 if { # Test inheritance - PolicyId := "GWS.GMAIL.5.1v0.3" + PolicyId := GmailId5_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -58,17 +62,13 @@ test_Encrypted_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Encrypted_Incorrect_V1 if { # Test Attachment Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.5.1v0.3" + PolicyId := GmailId5_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -91,17 +91,14 @@ test_Encrypted_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Protection against encrypted attachments from untrusted senders is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage5_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Encrypted_Incorrect_V2 if { # Test Attachment Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.5.1v0.3" + PolicyId := GmailId5_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -138,21 +135,18 @@ test_Encrypted_Incorrect_V2 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Protection against encrypted attachments from untrusted senders is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- # -# GWS.GMAIL.5.2v0.3 +# GWS.GMAIL.5.2 #-- test_Scripts_Correct_V1 if { # Test Attachment Protections when there's only one event - PolicyId := "GWS.GMAIL.5.2v0.3" + PolicyId := GmailId5_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -177,16 +171,12 @@ test_Scripts_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Scripts_Correct_V2 if { # Test Attachment Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.5.2v0.3" + PolicyId := GmailId5_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -227,16 +217,12 @@ test_Scripts_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Scripts_Correct_V3 if { # Test Attachment Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.5.2v0.3" + PolicyId := GmailId5_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -277,16 +263,12 @@ test_Scripts_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Scripts_Incorrect_V1 if { # Test Attachment Protections when there are no relevant events - PolicyId := "GWS.GMAIL.5.2v0.3" + PolicyId := GmailId5_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -305,20 +287,12 @@ test_Scripts_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_Scripts_Incorrect_V2 if { # Test Attachment Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.5.2v0.3" + PolicyId := GmailId5_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -343,17 +317,14 @@ test_Scripts_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Protection against encrypted attachments with scripts from untrusted senders is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_2("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Scripts_Incorrect_V3 if { # Test Attachment Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.5.2v0.3" + PolicyId := GmailId5_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -394,21 +365,18 @@ test_Scripts_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Protection against encrypted attachments with scripts from untrusted senders is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_2("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- # -# GWS.GMAIL.5.3v0.3 +# GWS.GMAIL.5.3 #-- test_AttachmentProtectionAnomalousAttachment_Correct_V1 if { # Test Attachment Protections when there's only one event - PolicyId := "GWS.GMAIL.5.3v0.3" + PolicyId := GmailId5_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -430,16 +398,12 @@ test_AttachmentProtectionAnomalousAttachment_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_AttachmentProtectionAnomalousAttachment_Correct_V2 if { # Test Attachment Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.5.3v0.3" + PolicyId := GmailId5_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -474,16 +438,12 @@ test_AttachmentProtectionAnomalousAttachment_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_AttachmentProtectionAnomalousAttachment_Correct_V3 if { # Test Attachment Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.5.3v0.3" + PolicyId := GmailId5_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -518,16 +478,12 @@ test_AttachmentProtectionAnomalousAttachment_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_AttachmentProtectionAnomalousAttachment_Correct_V4 if { # Test Attachment Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.5.3v0.3" + PolicyId := GmailId5_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -562,16 +518,12 @@ test_AttachmentProtectionAnomalousAttachment_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_AttachmentProtectionAnomalousAttachment_Incorrect_V1 if { # Test Attachment Protections when there are no relevant events - PolicyId := "GWS.GMAIL.5.3v0.3" + PolicyId := GmailId5_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -590,20 +542,12 @@ test_AttachmentProtectionAnomalousAttachment_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_AttachmentProtectionAnomalousAttachment_Incorrect_V2 if { # Test Attachment Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.5.3v0.3" + PolicyId := GmailId5_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -625,17 +569,14 @@ test_AttachmentProtectionAnomalousAttachment_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Protection against anomalous attachment types in emails is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_AttachmentProtectionAnomalousAttachment_Incorrect_V3 if { # Test Attachment Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.5.3v0.3" + PolicyId := GmailId5_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -670,17 +611,14 @@ test_AttachmentProtectionAnomalousAttachment_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Protection against anomalous attachment types in emails is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_AttachmentProtectionAnomalousAttachment_Incorrect_V4 if { # Test Attachment Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.5.3v0.3" + PolicyId := GmailId5_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -702,17 +640,14 @@ test_AttachmentProtectionAnomalousAttachment_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Protection against anomalous attachment types in emails is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage5_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_AttachmentProtectionAnomalousAttachment_Incorrect_V5 if { # Test Attachment Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.5.3v0.3" + PolicyId := GmailId5_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -747,21 +682,18 @@ test_AttachmentProtectionAnomalousAttachment_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Protection against anomalous attachment types in emails is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage5_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } # -# GWS.GMAIL.5.4v0.3 +# GWS.GMAIL.5.4 #-- test_AttachmentProtectionFutureRecommendedSettings_Correct_V1 if { # Test Attachment Protections when there's only one event - PolicyId := "GWS.GMAIL.5.4v0.3" + PolicyId := GmailId5_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -783,16 +715,12 @@ test_AttachmentProtectionFutureRecommendedSettings_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_AttachmentProtectionFutureRecommendedSettings_Correct_V2 if { # Test Attachment Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.5.4v0.3" + PolicyId := GmailId5_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -827,16 +755,12 @@ test_AttachmentProtectionFutureRecommendedSettings_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_AttachmentProtectionFutureRecommendedSettings_Correct_V3 if { # Test Attachment Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.5.4v0.3" + PolicyId := GmailId5_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -871,16 +795,12 @@ test_AttachmentProtectionFutureRecommendedSettings_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_AttachmentProtectionFutureRecommendedSettings_Correct_V4 if { # Test Attachment Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.5.4v0.3" + PolicyId := GmailId5_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -915,16 +835,12 @@ test_AttachmentProtectionFutureRecommendedSettings_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_AttachmentProtectionFutureRecommendedSettings_Incorrect_V1 if { # Test Attachment Protections when there are no relevant events - PolicyId := "GWS.GMAIL.5.4v0.3" + PolicyId := GmailId5_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -943,20 +859,12 @@ test_AttachmentProtectionFutureRecommendedSettings_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_AttachmentProtectionFutureRecommendedSettings_Incorrect_V2 if { # Test Attachment Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.5.4v0.3" + PolicyId := GmailId5_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -978,17 +886,14 @@ test_AttachmentProtectionFutureRecommendedSettings_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Automatically enables all future added settings is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_AttachmentProtectionFutureRecommendedSettings_Incorrect_V3 if { # Test Attachment Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.5.4v0.3" + PolicyId := GmailId5_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1023,17 +928,14 @@ test_AttachmentProtectionFutureRecommendedSettings_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Automatically enables all future added settings is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_AttachmentProtectionFutureRecommendedSettings_Incorrect_V4 if { # Test Attachment Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.5.4v0.3" + PolicyId := GmailId5_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1055,17 +957,14 @@ test_AttachmentProtectionFutureRecommendedSettings_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Automatically enables all future added settings is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage5_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_AttachmentProtectionFutureRecommendedSettings_Incorrect_V5 if { # Test Attachment Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.5.4v0.3" + PolicyId := GmailId5_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1100,20 +999,17 @@ test_AttachmentProtectionFutureRecommendedSettings_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Automatically enables all future added settings is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage5_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } # -# GWS.GMAIL.5.5v0.3 +# GWS.GMAIL.5.5 #-- test_AttachmentSafety_Correct_V1 if { # Test Spoofing and Authentication Protections when there's only one event - PolicyId := "GWS.GMAIL.5.5v0.3" + PolicyId := GmailId5_5 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1161,16 +1057,12 @@ test_AttachmentSafety_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_AttachmentSafety_InCorrect_V1 if { # Test Spoofing and Authentication Protections when there's only one event - PolicyId := "GWS.GMAIL.5.5v0.3" + PolicyId := GmailId5_5 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1218,24 +1110,14 @@ test_AttachmentSafety_InCorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - concat("", [ - "The following email types are kept in the inbox:", - "
      ", - concat("", [concat("", [ - "
    • ", - "Emails with attachments, with scripts from untrusted senders", - "
    "]),]), - "
"])]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": GetFriendlyValue5_5("", "Show warning", "")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_AttachmentSafety_InCorrect_V2 if { # Test Spoofing and Authentication Protections when there's only one event - PolicyId := "GWS.GMAIL.5.5v0.3" + PolicyId := GmailId5_5 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1283,24 +1165,14 @@ test_AttachmentSafety_InCorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - concat("", [ - "The following email types are kept in the inbox:", - "
      ", - concat("", [concat("", [ - "
    • ", - "Encrypted attachments from untrusted senders", - "
    "]),]), - "
"])]) + failedOU := [{"Name": "Secondary OU", + "Value": GetFriendlyValue5_5("Show warning", "", "")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -test_AttachmentSafety_Inorrect_V3 if { +test_AttachmentSafety_Incorrect_V3 if { # Test Spoofing and Authentication Protections when one setting is missing events - PolicyId := "GWS.GMAIL.5.5v0.3" + PolicyId := GmailId5_5 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1336,21 +1208,13 @@ test_AttachmentSafety_Inorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_AttachmentSafety_Incorrect_V4 if { # Test Spoofing and Authentication Protections when all settings have no events - PolicyId := "GWS.GMAIL.5.5v0.3" + PolicyId := GmailId5_5 Output := tests with input as { "gmail_logs": {"items": [ @@ -1360,20 +1224,12 @@ test_AttachmentSafety_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_AttachmentSafety_InCorrect_V5 if { # Test Spoofing and Authentication Protections when there are multiple events - PolicyId := "GWS.GMAIL.5.5v0.3" + PolicyId := GmailId5_5 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1421,20 +1277,7 @@ test_AttachmentSafety_InCorrect_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - concat("", [ - "The following email types are kept in the inbox:", - "
      ", - concat("", [concat("", [ - "
    • ", - "Encrypted attachments from untrusted senders", - "
    • ", - "
    • ", - "Emails with attachments, with scripts from untrusted senders", - "
    "]),]), - "
"])]) -} \ No newline at end of file + failedOU := [{"Name": "Secondary OU", + "Value": GetFriendlyValue5_5("Show warning", "Show warning", "")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/Testing/RegoTests/gmail/gmail06_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail06_test.rego similarity index 77% rename from Testing/RegoTests/gmail/gmail06_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail06_test.rego index 67e14c12..913aeccb 100644 --- a/Testing/RegoTests/gmail/gmail06_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail06_test.rego @@ -1,13 +1,16 @@ package gmail -import future.keywords +import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.GMAIL.6.1v0.3 +# GWS.GMAIL.6.1 #-- test_LinksExternalImagesProtectionIdentifyLinksURL_Correct_V1 if { # Test Links and External Images Protections when there's only one event - PolicyId := "GWS.GMAIL.6.1v0.3" + PolicyId := GmailId6_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -29,16 +32,12 @@ test_LinksExternalImagesProtectionIdentifyLinksURL_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_LinksExternalImagesProtectionIdentifyLinksURL_Correct_V2 if { # Test Links and External Images Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.6.1v0.3" + PolicyId := GmailId6_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -73,16 +72,12 @@ test_LinksExternalImagesProtectionIdentifyLinksURL_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_LinksExternalImagesProtectionIdentifyLinksURL_Correct_V3 if { # Test Links and External Images Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.6.1v0.3" + PolicyId := GmailId6_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -117,16 +112,12 @@ test_LinksExternalImagesProtectionIdentifyLinksURL_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_LinksExternalImagesProtectionIdentifyLinksURL_Correct_V4 if { # Test Links and External Images Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.6.1v0.3" + PolicyId := GmailId6_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -161,16 +152,12 @@ test_LinksExternalImagesProtectionIdentifyLinksURL_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_LinksExternalImagesProtectionIdentifyLinksURL_Incorrect_V1 if { # Test Links and External Images Protections when there are no relevant events - PolicyId := "GWS.GMAIL.6.1v0.3" + PolicyId := GmailId6_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -189,20 +176,12 @@ test_LinksExternalImagesProtectionIdentifyLinksURL_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_LinksExternalImagesProtectionIdentifyLinksURL_Incorrect_V2 if { # Test Links and External Images Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.6.1v0.3" + PolicyId := GmailId6_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -224,17 +203,14 @@ test_LinksExternalImagesProtectionIdentifyLinksURL_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Identify links behind shortened URLs is disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage6_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_LinksExternalImagesProtectionIdentifyLinksURL_Incorrect_V3 if { # Test Links and External Images Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.6.1v0.3" + PolicyId := GmailId6_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -269,17 +245,14 @@ test_LinksExternalImagesProtectionIdentifyLinksURL_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Identify links behind shortened URLs is disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage6_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_LinksExternalImagesProtectionIdentifyLinksURL_Incorrect_V4 if { # Test Links and External Images Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.6.1v0.3" + PolicyId := GmailId6_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -301,17 +274,14 @@ test_LinksExternalImagesProtectionIdentifyLinksURL_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Identify links behind shortened URLs is disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage6_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_LinksExternalImagesProtectionIdentifyLinksURL_Incorrect_V5 if { # Test Links and External Images Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.6.1v0.3" + PolicyId := GmailId6_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -346,22 +316,19 @@ test_LinksExternalImagesProtectionIdentifyLinksURL_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Identify links behind shortened URLs is disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage6_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- # -# GWS.GMAIL.6.2v0.3 +# GWS.GMAIL.6.2 #-- test_LinksExternalImagesProtectionScanLinkedImages_Correct_V1 if { # Test Links and External Images Protections when there's only one event and it's correct - PolicyId := "GWS.GMAIL.6.2v0.3" + PolicyId := GmailId6_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -383,16 +350,12 @@ test_LinksExternalImagesProtectionScanLinkedImages_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_LinksExternalImagesProtectionScanLinkedImages_Correct_V2 if { # Test Links and External Images Protections when there are multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.6.2v0.3" + PolicyId := GmailId6_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -427,16 +390,12 @@ test_LinksExternalImagesProtectionScanLinkedImages_Correct_V2 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_LinksExternalImagesProtectionScanLinkedImages_Correct_V3 if { # Test Links and External Images Protections when there are multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.6.2v0.3" + PolicyId := GmailId6_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -471,16 +430,12 @@ test_LinksExternalImagesProtectionScanLinkedImages_Correct_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_LinksExternalImagesProtectionScanLinkedImages_Correct_V4 if { # Test Links and External Images Protections when there are multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.6.2v0.3" + PolicyId := GmailId6_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -515,16 +470,12 @@ test_LinksExternalImagesProtectionScanLinkedImages_Correct_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_LinksExternalImagesProtectionScanLinkedImages_Incorrect_V1 if { # Test Links and External Images Protections when there are no relevant events - PolicyId := "GWS.GMAIL.6.2v0.3" + PolicyId := GmailId6_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -543,20 +494,12 @@ test_LinksExternalImagesProtectionScanLinkedImages_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_LinksExternalImagesProtectionScanLinkedImages_Incorrect_V2 if { # Test Links and External Images Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.6.2v0.3" + PolicyId := GmailId6_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -578,17 +521,14 @@ test_LinksExternalImagesProtectionScanLinkedImages_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Scan linked images is disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage6_2("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_LinksExternalImagesProtectionScanLinkedImages_Incorrect_V3 if { # Test Links and External Images Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.6.2v0.3" + PolicyId := GmailId6_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -624,21 +564,18 @@ test_LinksExternalImagesProtectionScanLinkedImages_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Scan linked images is disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage6_2("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } # -# GWS.GMAIL.6.3v0.3 +# GWS.GMAIL.6.3 #-- test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Correct_V1 if { # Test Links and External Images Protections when there's only one event - PolicyId := "GWS.GMAIL.6.3v0.3" + PolicyId := GmailId6_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -663,16 +600,12 @@ test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Correct_V2 if { # Test Links and External Images Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.6.3v0.3" + PolicyId := GmailId6_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -713,16 +646,12 @@ test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Correct_V3 if { # Test Links and External Images Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.6.3v0.3" + PolicyId := GmailId6_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -763,16 +692,12 @@ test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Incorrect_V1 if { # Test Links and External Images Protections when there are no relevant events - PolicyId := "GWS.GMAIL.6.3v0.3" + PolicyId := GmailId6_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -791,20 +716,12 @@ test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Incorrect_V2 if { # Test Links and External Images Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.6.3v0.3" + PolicyId := GmailId6_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -829,17 +746,14 @@ test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Show warning prompt for click on links to untrusted domains is disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage6_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Incorrect_V3 if { # Test Links and External Images Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.6.3v0.3" + PolicyId := GmailId6_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -878,17 +792,14 @@ test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Show warning prompt for click on links to untrusted domains is disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage6_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Incorrect_V4 if { # Test Links and External Images Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.6.3v0.3" + PolicyId := GmailId6_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -911,17 +822,14 @@ test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Show warning prompt for click on links to untrusted domains is disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage6_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Incorrect_V5 if { # Test Links and External Images Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.6.3v0.3" + PolicyId := GmailId6_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -960,21 +868,18 @@ test_LinksExternalImagesProtectionWarningLinksUntrustedDomains_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Show warning prompt for click on links to untrusted domains is disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage6_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } # -# GWS.GMAIL.6.4v0.3 +# GWS.GMAIL.6.4 #-- test_LinksExternalImagesProtectionFutureRecommendedSettings_Correct_V1 if { # Test Links and External Images Protections when there's only one event - PolicyId := "GWS.GMAIL.6.4v0.3" + PolicyId := GmailId6_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -999,16 +904,12 @@ test_LinksExternalImagesProtectionFutureRecommendedSettings_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_LinksExternalImagesProtectionFutureRecommendedSettings_Correct_V2 if { # Test Links and External Images Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.6.4v0.3" + PolicyId := GmailId6_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1049,16 +950,12 @@ test_LinksExternalImagesProtectionFutureRecommendedSettings_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_LinksExternalImagesProtectionFutureRecommendedSettings_Correct_V3 if { # Test Links and External Images Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.6.4v0.3" + PolicyId := GmailId6_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1099,16 +996,12 @@ test_LinksExternalImagesProtectionFutureRecommendedSettings_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_LinksExternalImagesProtectionFutureRecommendedSettings_Correct_V4 if { # Test Links and External Images Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.6.4v0.3" + PolicyId := GmailId6_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1149,16 +1042,12 @@ test_LinksExternalImagesProtectionFutureRecommendedSettings_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_LinksExternalImagesProtectionFutureRecommendedSettings_Incorrect_V1 if { # Test Links and External Images Protections when there are no relevant events - PolicyId := "GWS.GMAIL.6.4v0.3" + PolicyId := GmailId6_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1177,20 +1066,12 @@ test_LinksExternalImagesProtectionFutureRecommendedSettings_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_LinksExternalImagesProtectionFutureRecommendedSettings_Incorrect_V2 if { # Test Links and External Images Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.6.4v0.3" + PolicyId := GmailId6_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1215,17 +1096,14 @@ test_LinksExternalImagesProtectionFutureRecommendedSettings_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Apply future recommended settings automatically is disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage6_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_LinksExternalImagesProtectionFutureRecommendedSettings_Incorrect_V3 if { # Test Links and External Images Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.6.4v0.3" + PolicyId := GmailId6_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1250,17 +1128,14 @@ test_LinksExternalImagesProtectionFutureRecommendedSettings_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Apply future recommended settings automatically is disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage6_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_LinksExternalImagesProtectionFutureRecommendedSettings_Incorrect_V4 if { # Test Links and External Images Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.6.4v0.3" + PolicyId := GmailId6_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1301,10 +1176,7 @@ test_LinksExternalImagesProtectionFutureRecommendedSettings_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Apply future recommended settings automatically is disabled
"]) -} \ No newline at end of file + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage6_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/Testing/RegoTests/gmail/gmail07_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail07_test.rego similarity index 79% rename from Testing/RegoTests/gmail/gmail07_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail07_test.rego index 1ac06fac..807fafd3 100644 --- a/Testing/RegoTests/gmail/gmail07_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail07_test.rego @@ -1,13 +1,17 @@ package gmail -import future.keywords +import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.GMAIL.7.1v0.3 +# GWS.GMAIL.7.1 #-- + test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Correct_V1 if { # Test Spoofing and Authentication Protections when there's only one event - PolicyId := "GWS.GMAIL.7.1v0.3" + PolicyId := GmailId7_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -32,16 +36,12 @@ test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Correct_V2 if { # Test Spoofing and Authentication Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.7.1v0.3" + PolicyId := GmailId7_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -82,16 +82,12 @@ test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Correct_V3 if { # Test Spoofing and Authentication Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.7.1v0.3" + PolicyId := GmailId7_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -132,16 +128,12 @@ test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Correct_V4 if { # Test Spoofing and Authentication Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.7.1v0.3" + PolicyId := GmailId7_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -182,16 +174,12 @@ test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Incorrect_V1 if { # Test Spoofing and Authentication Protections when there are no relevant events - PolicyId := "GWS.GMAIL.7.1v0.3" + PolicyId := GmailId7_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -210,20 +198,12 @@ test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Incorrect_V2 if { # Test Spoofing and Authentication Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.7.1v0.3" + PolicyId := GmailId7_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -248,17 +228,14 @@ test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Protect against domain spoofing using similar domain names is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage7_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Incorrect_V3 if { # Test Spoofing and Authentication Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.7.1v0.3" + PolicyId := GmailId7_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -299,17 +276,14 @@ test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Protect against domain spoofing using similar domain names is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage7_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Incorrect_V4 if { # Test Spoofing and Authentication Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.7.1v0.3" + PolicyId := GmailId7_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -334,17 +308,14 @@ test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Protect against domain spoofing using similar domain names is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage7_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Incorrect_V5 if { # Test Spoofing and Authentication Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.7.1v0.3" + PolicyId := GmailId7_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -385,23 +356,19 @@ test_SpoofingAuthenticationProtectionSimilarDomainNameSpoofing_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Protect against domain spoofing using similar domain names is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage7_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- - # -# GWS.GMAIL.7.2v0.3 +# GWS.GMAIL.7.2 #-- test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Correct_V1 if { # Test Spoofing and Authentication Protections when there's only one event - PolicyId := "GWS.GMAIL.7.2v0.3" + PolicyId := GmailId7_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -424,16 +391,12 @@ test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Correct_V2 if { # Test Spoofing and Authentication Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.7.2v0.3" + PolicyId := GmailId7_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -470,16 +433,12 @@ test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Correct_V3 if { # Test Spoofing and Authentication Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.7.2v0.3" + PolicyId := GmailId7_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -516,16 +475,12 @@ test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Correct_V4 if { # Test Spoofing and Authentication Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.7.2v0.3" + PolicyId := GmailId7_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -562,16 +517,12 @@ test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Incorrect_V1 if { # Test Spoofing and Authentication Protections when there are no relevant events - PolicyId := "GWS.GMAIL.7.2v0.3" + PolicyId := GmailId7_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -590,20 +541,12 @@ test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Incorrect_V2 if { # Test Spoofing and Authentication Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.7.2v0.3" + PolicyId := GmailId7_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -626,17 +569,14 @@ test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Protect against spoofing of employee names is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage7_2("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Incorrect_V3 if { # Test Spoofing and Authentication Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.7.2v0.3" + PolicyId := GmailId7_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -673,17 +613,14 @@ test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Protect against spoofing of employee names is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage7_2("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Incorrect_V4 if { # Test Spoofing and Authentication Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.7.2v0.3" + PolicyId := GmailId7_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -706,17 +643,14 @@ test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Protect against spoofing of employee names is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage7_2("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Incorrect_V5 if { # Test Spoofing and Authentication Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.7.2v0.3" + PolicyId := GmailId7_2 Output := tests with input as { "gmail_logs": {"items": [ { @@ -753,21 +687,18 @@ test_SpoofingAuthenticationProtectionEmployeeNameSpoofing_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Protect against spoofing of employee names is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage7_2("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } - # -# GWS.GMAIL.7.3v0.3 +# GWS.GMAIL.7.3 #-- + test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Correct_V1 if { # Test Spoofing and Authentication Protections when there's only one event - PolicyId := "GWS.GMAIL.7.3v0.3" + PolicyId := GmailId7_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -792,16 +723,12 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Correct_V2 if { # Test Spoofing and Authentication Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.7.3v0.3" + PolicyId := GmailId7_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -842,16 +769,12 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Correct_V3 if { # Test Spoofing and Authentication Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.7.3v0.3" + PolicyId := GmailId7_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -892,16 +815,12 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Correct_V4 if { # Test Spoofing and Authentication Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.7.3v0.3" + PolicyId := GmailId7_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -942,16 +861,12 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Incorrect_V1 if { # Test Spoofing and Authentication Protections when there are no relevant events - PolicyId := "GWS.GMAIL.7.3v0.3" + PolicyId := GmailId7_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -970,20 +885,12 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Incorrect_V1 if } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Incorrect_V2 if { # Test Spoofing and Authentication Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.7.3v0.3" + PolicyId := GmailId7_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1008,17 +915,14 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Incorrect_V2 if } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Protect against inbound emails spoofing your domain is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage7_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Incorrect_V3 if { # Test Spoofing and Authentication Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.7.3v0.3" + PolicyId := GmailId7_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1059,17 +963,14 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Incorrect_V3 if }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Protect against inbound emails spoofing your domain is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage7_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Incorrect_V4 if { # Test Spoofing and Authentication Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.7.3v0.3" + PolicyId := GmailId7_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1094,17 +995,14 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Incorrect_V4 if } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Protect against inbound emails spoofing your domain is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage7_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Incorrect_V5 if { # Test Spoofing and Authentication Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.7.3v0.3" + PolicyId := GmailId7_3 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1145,22 +1043,18 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofing_Incorrect_V5 if }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Protect against inbound emails spoofing your domain is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage7_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } - # -# GWS.GMAIL.7.4v0.3 +# GWS.GMAIL.7.4 #-- test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Correct_V1 if { # Test Spoofing and Authentication Protections when there's only one event - PolicyId := "GWS.GMAIL.7.4v0.3" + PolicyId := GmailId7_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1183,16 +1077,12 @@ test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Correct_V2 if { # Test Spoofing and Authentication Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.7.4v0.3" + PolicyId := GmailId7_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1229,16 +1119,12 @@ test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Correct_V3 if { # Test Spoofing and Authentication Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.7.4v0.3" + PolicyId := GmailId7_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1275,16 +1161,12 @@ test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Correct_V4 if { # Test Spoofing and Authentication Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.7.4v0.3" + PolicyId := GmailId7_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1321,17 +1203,12 @@ test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } - test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Incorrect_V1 if { # Test Spoofing and Authentication Protections when there are no relevant events - PolicyId := "GWS.GMAIL.7.4v0.3" + PolicyId := GmailId7_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1350,20 +1227,12 @@ test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Incorrect_V2 if { # Test Spoofing and Authentication Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.7.4v0.3" + PolicyId := GmailId7_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1386,17 +1255,14 @@ test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Protect against any unauthenticated emails is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage7_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Incorrect_V3 if { # Test Spoofing and Authentication Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.7.4v0.3" + PolicyId := GmailId7_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1433,17 +1299,14 @@ test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Protect against any unauthenticated emails is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage7_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Incorrect_V4 if { # Test Spoofing and Authentication Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.7.4v0.3" + PolicyId := GmailId7_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1466,17 +1329,14 @@ test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Protect against any unauthenticated emails is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage7_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Incorrect_V5 if { # Test Spoofing and Authentication Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.7.4v0.3" + PolicyId := GmailId7_4 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1513,21 +1373,18 @@ test_SpoofingAuthenticationProtectionUnauthenticatedEmail_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Protect against any unauthenticated emails is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage7_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } - # -# GWS.GMAIL.7.5v0.3 +# GWS.GMAIL.7.5 #-- + test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Correct_V1 if { # Test Spoofing and Authentication Protections when there's only one event - PolicyId := "GWS.GMAIL.7.5v0.3" + PolicyId := GmailId7_5 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1552,16 +1409,12 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Correct_V1 } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Correct_V2 if { # Test Spoofing and Authentication Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.7.5v0.3" + PolicyId := GmailId7_5 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1602,16 +1455,12 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Correct_V2 } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Correct_V3 if { # Test Spoofing and Authentication Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.7.5v0.3" + PolicyId := GmailId7_5 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1652,16 +1501,12 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Correct_V3 } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Correct_V4 if { # Test Spoofing and Authentication Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.7.5v0.3" + PolicyId := GmailId7_5 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1702,16 +1547,12 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Correct_V4 } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Incorrect_V1 if { # Test Spoofing and Authentication Protections when there are no relevant events - PolicyId := "GWS.GMAIL.7.5v0.3" + PolicyId := GmailId7_5 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1730,20 +1571,12 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Incorrect_ } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Incorrect_V2 if { # Test Spoofing and Authentication Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.7.5v0.3" + PolicyId := GmailId7_5 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1768,17 +1601,14 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Incorrect_ } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Protect your Groups from inbound emails spoofing your domain is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage7_5("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Incorrect_V3 if { # Test Spoofing and Authentication Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.7.5v0.3" + PolicyId := GmailId7_5 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1819,17 +1649,14 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Incorrect_ }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Protect your Groups from inbound emails spoofing your domain is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage7_5("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Incorrect_V4 if { # Test Spoofing and Authentication Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.7.5v0.3" + PolicyId := GmailId7_5 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1854,17 +1681,14 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Incorrect_ } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Protect your Groups from inbound emails spoofing your domain is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage7_5("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Incorrect_V5 if { # Test Spoofing and Authentication Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.7.5v0.3" + PolicyId := GmailId7_5 Output := tests with input as { "gmail_logs": {"items": [ { @@ -1905,20 +1729,18 @@ test_SpoofingAuthenticationProtectionInboundEmailDomainSpoofingGroups_Incorrect_ }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Protect your Groups from inbound emails spoofing your domain is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage7_5("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } # -# GWS.GMAIL.7.6v0.3 +# GWS.GMAIL.7.6 #-- + test_SpoofingAuthenticationProtection_Correct_V1 if { # Test Spoofing and Authentication Protections when there's only one event - PolicyId := "GWS.GMAIL.7.6v0.3" + PolicyId := GmailId7_6 Output := tests with input as { "gmail_logs": {"items": [ { @@ -2003,16 +1825,12 @@ test_SpoofingAuthenticationProtection_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtection_InCorrect_V1 if { # Test Spoofing and Authentication Protections when there's only one event - PolicyId := "GWS.GMAIL.7.6v0.3" + PolicyId := GmailId7_6 Output := tests with input as { "gmail_logs": {"items": [ { @@ -2097,27 +1915,15 @@ test_SpoofingAuthenticationProtection_InCorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - concat("", [ - "The following email types are kept in the inbox:", - "
      ", - concat("", [concat("", [ - "
    • ", - "Inbound emails spoofing similar domain names", - "
    • ", - "
    • ", - "Inbound spoofing emails addresed to groups", - "
    "]),]), - "
"])]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": GetFriendlyValue7_6("Show warning", + "", "", "", "Show warning")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtection_InCorrect_V2 if { # Test Spoofing and Authentication Protections when there's only one event - PolicyId := "GWS.GMAIL.7.6v0.3" + PolicyId := GmailId7_6 Output := tests with input as { "gmail_logs": {"items": [ { @@ -2202,31 +2008,19 @@ test_SpoofingAuthenticationProtection_InCorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - concat("", [ - "The following email types are kept in the inbox:", - "
      ", - concat("", [concat("", [ - "
    • ", - "Inbound emails spoofing similar domain names", - "
    • ", - "
    • ", - "Inbound spoofing emails addresed to groups", - "
    "]),]), - "
"])]) + failedOU := [{"Name": "Secondary OU", + "Value": GetFriendlyValue7_6("Show warning", + "", "", "", "Show warning")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } - # -# GWS.GMAIL.7.7v0.3 +# GWS.GMAIL.7.7 #-- + test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Correct_V1 if { # Test Spoofing and Authentication Protections when there's only one event - PolicyId := "GWS.GMAIL.7.7v0.3" + PolicyId := GmailId7_7 Output := tests with input as { "gmail_logs": {"items": [ { @@ -2251,16 +2045,12 @@ test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Correct_V2 if { # Test Spoofing and Authentication Protections when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.7.7v0.3" + PolicyId := GmailId7_7 Output := tests with input as { "gmail_logs": {"items": [ { @@ -2301,16 +2091,12 @@ test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Correct_V3 if { # Test Spoofing and Authentication Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.7.7v0.3" + PolicyId := GmailId7_7 Output := tests with input as { "gmail_logs": {"items": [ { @@ -2351,16 +2137,12 @@ test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Correct_V4 if { # Test Spoofing and Authentication Protections when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.7.7v0.3" + PolicyId := GmailId7_7 Output := tests with input as { "gmail_logs": {"items": [ { @@ -2401,16 +2183,12 @@ test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Incorrect_V1 if { # Test Spoofing and Authentication Protections when there are no relevant events - PolicyId := "GWS.GMAIL.7.7v0.3" + PolicyId := GmailId7_7 Output := tests with input as { "gmail_logs": {"items": [ { @@ -2429,20 +2207,13 @@ test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Incorrect_V2 if { - # Test Spoofing and Authentication Protections when only one setting doesn't have enents - PolicyId := "GWS.GMAIL.7.7v0.3" + # Test Spoofing and Authentication Protections when only one setting + # doesn't have events + PolicyId := GmailId7_7 Output := tests with input as { "gmail_logs": {"items": [ { @@ -2505,28 +2276,20 @@ test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Incorrect_V2 if { ] }] }, - # Note that "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your - # domain action" is missing + # Note that "Spoofing and authentication safety Protect your Groups + # from inbound emails spoofing your domain action" is missing ]}, "tenant_info": { "topLevelOU": "" } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Incorrect_V3 if { # Test Spoofing and Authentication Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.7.7v0.3" + PolicyId := GmailId7_7 Output := tests with input as { "gmail_logs": {"items": [ { @@ -2551,17 +2314,14 @@ test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Automatically enable all future added settings is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage7_7("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Incorrect_V4 if { # Test Spoofing and Authentication Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.7.7v0.3" + PolicyId := GmailId7_7 Output := tests with input as { "gmail_logs": {"items": [ { @@ -2602,17 +2362,14 @@ test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Automatically enable all future added settings is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage7_7("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Incorrect_V5 if { # Test Spoofing and Authentication Protections when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.7.7v0.3" + PolicyId := GmailId7_7 Output := tests with input as { "gmail_logs": {"items": [ { @@ -2637,17 +2394,14 @@ test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Incorrect_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Automatically enable all future added settings is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage7_7("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Incorrect_V6 if { # Test Spoofing and Authentication Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.7.7v0.3" + PolicyId := GmailId7_7 Output := tests with input as { "gmail_logs": {"items": [ { @@ -2688,10 +2442,7 @@ test_SpoofingAuthenticationProtectionFutureRecommendedSettings_Incorrect_V6 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Automatically enable all future added settings is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage7_7("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } diff --git a/Testing/RegoTests/gmail/gmail08_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail08_test.rego similarity index 96% rename from Testing/RegoTests/gmail/gmail08_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail08_test.rego index bc200746..52bab032 100644 --- a/Testing/RegoTests/gmail/gmail08_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail08_test.rego @@ -1,13 +1,12 @@ package gmail import future.keywords - # -# GWS.GMAIL.8.1v0.3 +# GWS.GMAIL.8.1 #-- test_UserEmailUploads_Correct_V1 if { # Test User Email Uploads when there's only one event - PolicyId := "GWS.GMAIL.8.1v0.3" + PolicyId := GmailId8_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -35,7 +34,7 @@ test_UserEmailUploads_Correct_V1 if { test_UserEmailUploads_Correct_V2 if { # Test User Email Uploads when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.8.1v0.3" + PolicyId := GmailId8_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -73,7 +72,7 @@ test_UserEmailUploads_Correct_V2 if { test_UserEmailUploads_Correct_V3 if { # Test User Email Uploads when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.8.1v0.3" + PolicyId := GmailId8_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -111,7 +110,7 @@ test_UserEmailUploads_Correct_V3 if { test_UserEmailUploads_Incorrect_V1 if { # Test User Email Uploads when there are no relevant events - PolicyId := "GWS.GMAIL.8.1v0.3" + PolicyId := GmailId8_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -143,7 +142,7 @@ test_UserEmailUploads_Incorrect_V1 if { test_UserEmailUploads_Incorrect_V2 if { # Test User Email Uploads when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.8.1v0.3" + PolicyId := GmailId8_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -172,7 +171,7 @@ test_UserEmailUploads_Incorrect_V2 if { test_UserEmailUploads_Incorrect_V3 if { # Test Spoofing and Authentication Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.8.1v0.3" + PolicyId := GmailId8_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -211,7 +210,7 @@ test_UserEmailUploads_Incorrect_V3 if { test_UserEmailUploads_Incorrect_V4 if { # Test User Email Uploads when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.8.1v0.3" + PolicyId := GmailId8_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -240,7 +239,7 @@ test_UserEmailUploads_Incorrect_V4 if { test_UserEmailUploads_Incorrect_V5 if { # Test Spoofing and Authentication Protections when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.8.1v0.3" + PolicyId := GmailId8_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -276,4 +275,4 @@ test_UserEmailUploads_Incorrect_V5 if { RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", "User email uploads is set to enabled
"]) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/gmail/gmail09_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail09_test.rego similarity index 97% rename from Testing/RegoTests/gmail/gmail09_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail09_test.rego index 95cfefc0..50a6638b 100644 --- a/Testing/RegoTests/gmail/gmail09_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail09_test.rego @@ -1,14 +1,13 @@ package gmail import future.keywords - # -# GWS.GMAIL.9.1v0.3 +# GWS.GMAIL.9.1 #-- test_ImapAccess_Correct_V1 if { # Test IMAP and POP Access when there's only one event - PolicyId := "GWS.GMAIL.9.1v0.3" + PolicyId := GmailId9_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -46,7 +45,7 @@ test_ImapAccess_Correct_V1 if { test_ImapAccess_Incorrect_V1 if { # Test IMAP and POP Access when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.9.1v0.3" + PolicyId := GmailId9_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -85,7 +84,7 @@ test_ImapAccess_Incorrect_V1 if { test_ImapAccess_Incorrect_V2 if { # Test IMAP and POP Access when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.9.1v0.3" + PolicyId := GmailId9_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -124,7 +123,7 @@ test_ImapAccess_Incorrect_V2 if { test_ImapAccess_Incorrect_V3 if { # Test IMAP and POP Access when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.9.1v0.3" + PolicyId := GmailId9_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -180,4 +179,4 @@ test_ImapAccess_Incorrect_V3 if { RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", "IMAP access is enabled
"]) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/gmail/gmail10_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail10_test.rego similarity index 96% rename from Testing/RegoTests/gmail/gmail10_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail10_test.rego index 86cc5b07..6c5f3e76 100644 --- a/Testing/RegoTests/gmail/gmail10_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail10_test.rego @@ -1,13 +1,12 @@ package gmail import future.keywords - # -# GWS.GMAIL.10.1v0.3 +# GWS.GMAIL.10.1 #-- test_GoogleWorkspaceSync_Correct_V1 if { # Test Google Workspace Sync for Microsoft Outlook when there's only one event - PolicyId := "GWS.GMAIL.10.1v0.3" + PolicyId := GmailId10_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -35,7 +34,7 @@ test_GoogleWorkspaceSync_Correct_V1 if { test_GoogleWorkspaceSync_Correct_V2 if { # Test Google Workspace Sync for Microsoft Outlook when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.10.1v0.3" + PolicyId := GmailId10_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -73,7 +72,7 @@ test_GoogleWorkspaceSync_Correct_V2 if { test_GoogleWorkspaceSync_Correct_V3 if { # Test Google Workspace Sync for Microsoft Outlook when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.10.1v0.3" + PolicyId := GmailId10_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -111,7 +110,7 @@ test_GoogleWorkspaceSync_Correct_V3 if { test_GoogleWorkspaceSync_Correct_V4 if { # Test Google Workspace Sync for Microsoft Outlook when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.10.1v0.3" + PolicyId := GmailId10_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -149,7 +148,7 @@ test_GoogleWorkspaceSync_Correct_V4 if { test_GoogleWorkspaceSync_Incorrect_V1 if { # Test Google Workspace Sync for Microsoft Outlook when there are no relevant events - PolicyId := "GWS.GMAIL.10.1v0.3" + PolicyId := GmailId10_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -181,7 +180,7 @@ test_GoogleWorkspaceSync_Incorrect_V1 if { test_GoogleWorkspaceSync_Incorrect_V2 if { # Test Google Workspace Sync for Microsoft Outlook when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.10.1v0.3" + PolicyId := GmailId10_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -210,7 +209,7 @@ test_GoogleWorkspaceSync_Incorrect_V2 if { test_GoogleWorkspaceSync_Incorrect_V3 if { # Test Google Workspace Sync for Microsoft Outlook when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.10.1v0.3" + PolicyId := GmailId10_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -249,7 +248,7 @@ test_GoogleWorkspaceSync_Incorrect_V3 if { test_GoogleWorkspaceSync_Incorrect_V4 if { # Test Google Workspace Sync for Microsoft Outlook when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.10.1v0.3" + PolicyId := GmailId10_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -278,7 +277,7 @@ test_GoogleWorkspaceSync_Incorrect_V4 if { test_GoogleWorkspaceSync_Incorrect_V5 if { # Test Google Workspace Sync for Microsoft Outlook when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.10.1v0.3" + PolicyId := GmailId10_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -317,11 +316,11 @@ test_GoogleWorkspaceSync_Incorrect_V5 if { #-- # -# GWS.GMAIL.10.2v0.3 +# GWS.GMAIL.10.2 #-- test_May_Correct_V1 if { # Test not implemented - PolicyId := "GWS.GMAIL.10.2v0.3" + PolicyId := GmailId10_2 Output := tests with input as { "gmail_logs": {"items": [ ]}, @@ -336,4 +335,4 @@ test_May_Correct_V1 if { not RuleOutput[0].NoSuchEvent RuleOutput[0].ReportDetails == "Currently not able to be tested automatically; please manually check." } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/gmail/gmail11_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail11_test.rego similarity index 72% rename from Testing/RegoTests/gmail/gmail11_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail11_test.rego index 4167375b..dcb07ad7 100644 --- a/Testing/RegoTests/gmail/gmail11_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail11_test.rego @@ -1,13 +1,17 @@ package gmail -import future.keywords +import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.GetFriendlyEnabledValue +import data.utils.PassTestResult # -# GWS.GMAIL.11.1v0.3 +# GWS.GMAIL.11.1 #-- test_AutomaticForwarding_Correct_V1 if { # Test Automatic Forwarding when there's only one event - PolicyId := "GWS.GMAIL.11.1v0.3" + PolicyId := GmailId11_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -26,16 +30,12 @@ test_AutomaticForwarding_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_AutomaticForwarding_Correct_V2 if { # Test Automatic Forwarding when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.11.1v0.3" + PolicyId := GmailId11_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -64,16 +64,12 @@ test_AutomaticForwarding_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_AutomaticForwarding_Correct_V3 if { # Test Automatic Forwarding when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.11.1v0.3" + PolicyId := GmailId11_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -102,16 +98,12 @@ test_AutomaticForwarding_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_AutomaticForwarding_Correct_V4 if { # Test Automatic Forwarding when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.11.1v0.3" + PolicyId := GmailId11_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -140,16 +132,12 @@ test_AutomaticForwarding_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_AutomaticForwarding_Incorrect_V1 if { # Test Automatic Forwarding when there are no relevant events - PolicyId := "GWS.GMAIL.11.1v0.3" + PolicyId := GmailId11_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -168,20 +156,12 @@ test_AutomaticForwarding_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_AutomaticForwarding_Incorrect_V2 if { # Test Automatic Forwarding when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.11.1v0.3" + PolicyId := GmailId11_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -200,17 +180,14 @@ test_AutomaticForwarding_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Automatically enable email autoforwarding is set to enabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage11_1(GetFriendlyEnabledValue(true))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_AutomaticForwarding_Incorrect_V3 if { # Test Automatic Forwarding when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.11.1v0.3" + PolicyId := GmailId11_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -239,17 +216,14 @@ test_AutomaticForwarding_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Automatically enable email autoforwarding is set to enabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage11_1(GetFriendlyEnabledValue(true))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_AutomaticForwarding_Incorrect_V4 if { # Test Automatic Forwarding when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.11.1v0.3" + PolicyId := GmailId11_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -268,17 +242,14 @@ test_AutomaticForwarding_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Automatically enable email autoforwarding is set to enabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage11_1(GetFriendlyEnabledValue(true))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_AutomaticForwarding_Incorrect_V5 if { # Test Automatic Forwarding when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.11.1v0.3" + PolicyId := GmailId11_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -307,12 +278,9 @@ test_AutomaticForwarding_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Automatically enable email autoforwarding is set to enabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage11_1(GetFriendlyEnabledValue(true))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/gmail/gmail12_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail12_test.rego similarity index 96% rename from Testing/RegoTests/gmail/gmail12_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail12_test.rego index 572ab43e..ffdf175c 100644 --- a/Testing/RegoTests/gmail/gmail12_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail12_test.rego @@ -1,13 +1,12 @@ package gmail import future.keywords - # -# GWS.GMAIL.12.1v0.3 +# GWS.GMAIL.12.1 #-- test_PerUserOutboundGateway_Correct_V1 if { # Test Per-User Outbound Gateway when there's only one event - PolicyId := "GWS.GMAIL.12.1v0.3" + PolicyId := GmailId12_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -35,7 +34,7 @@ test_PerUserOutboundGateway_Correct_V1 if { test_PerUserOutboundGateway_Correct_V2 if { # Test Per-User Outbound Gateway when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.12.1v0.3" + PolicyId := GmailId12_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -73,7 +72,7 @@ test_PerUserOutboundGateway_Correct_V2 if { test_PerUserOutboundGateway_Correct_V3 if { # Test Per-User Outbound Gateway when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.12.1v0.3" + PolicyId := GmailId12_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -111,7 +110,7 @@ test_PerUserOutboundGateway_Correct_V3 if { test_PerUserOutboundGateway_Incorrect_V1 if { # Test Per-User Outbound Gateway when there are no relevant events - PolicyId := "GWS.GMAIL.12.1v0.3" + PolicyId := GmailId12_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -143,7 +142,7 @@ test_PerUserOutboundGateway_Incorrect_V1 if { test_PerUserOutboundGateway_Incorrect_V2 if { # Test Per-User Outbound Gateway when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.12.1v0.3" + PolicyId := GmailId12_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -172,7 +171,7 @@ test_PerUserOutboundGateway_Incorrect_V2 if { test_PerUserOutboundGateway_Incorrect_V3 if { # Test Per-User Outbound Gateway when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.12.1v0.3" + PolicyId := GmailId12_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -211,7 +210,7 @@ test_PerUserOutboundGateway_Incorrect_V3 if { test_PerUserOutboundGateway_Incorrect_V4 if { # Test Per-User Outbound Gateway when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.12.1v0.3" + PolicyId := GmailId12_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -240,7 +239,7 @@ test_PerUserOutboundGateway_Incorrect_V4 if { test_PerUserOutboundGateway_Incorrect_V5 if { # Test Per-User Outbound Gateway when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.12.1v0.3" + PolicyId := GmailId12_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -276,4 +275,4 @@ test_PerUserOutboundGateway_Incorrect_V5 if { RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", "Allow per-user outbound gateways is set to enabled
"]) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/gmail/gmail13_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail13_test.rego similarity index 97% rename from Testing/RegoTests/gmail/gmail13_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail13_test.rego index 13b879bb..d8f64dec 100644 --- a/Testing/RegoTests/gmail/gmail13_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail13_test.rego @@ -1,13 +1,12 @@ package gmail import future.keywords - # -# GWS.GMAIL.13.1v0.3 +# GWS.GMAIL.13.1 #-- test_ExternalReplyWarning_Correct_V1 if { # Test Unintended External Reply Warning when there's only one event - PolicyId := "GWS.GMAIL.13.1v0.3" + PolicyId := GmailId13_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -38,7 +37,7 @@ test_ExternalReplyWarning_Correct_V1 if { test_ExternalReplyWarning_Correct_V2 if { # Test Unintended External Reply Warning when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.13.1v0.3" + PolicyId := GmailId13_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -82,7 +81,7 @@ test_ExternalReplyWarning_Correct_V2 if { test_ExternalReplyWarning_Correct_V3 if { # Test Unintended External Reply Warning when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.13.1v0.3" + PolicyId := GmailId13_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -126,7 +125,7 @@ test_ExternalReplyWarning_Correct_V3 if { test_ExternalReplyWarning_Correct_V4 if { # Test Unintended External Reply Warning when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.13.1v0.3" + PolicyId := GmailId13_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -170,7 +169,7 @@ test_ExternalReplyWarning_Correct_V4 if { test_ExternalReplyWarning_Incorrect_V1 if { # Test Unintended External Reply Warning when there are no relevant events - PolicyId := "GWS.GMAIL.13.1v0.3" + PolicyId := GmailId13_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -202,7 +201,7 @@ test_ExternalReplyWarning_Incorrect_V1 if { test_ExternalReplyWarning_Incorrect_V2 if { # Test Unintended External Reply Warning when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.13.1v0.3" + PolicyId := GmailId13_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -234,7 +233,7 @@ test_ExternalReplyWarning_Incorrect_V2 if { test_ExternalReplyWarning_Incorrect_V3 if { # Test Unintended External Reply Warning when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.13.1v0.3" + PolicyId := GmailId13_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -279,7 +278,7 @@ test_ExternalReplyWarning_Incorrect_V3 if { test_ExternalReplyWarning_Incorrect_V4 if { # Test Unintended External Reply Warning when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.13.1v0.3" + PolicyId := GmailId13_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -311,7 +310,7 @@ test_ExternalReplyWarning_Incorrect_V4 if { test_ExternalReplyWarning_Incorrect_V5 if { # Test Unintended External Reply Warning when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.13.1v0.3" + PolicyId := GmailId13_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -353,4 +352,4 @@ test_ExternalReplyWarning_Incorrect_V5 if { RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", "Warn for external participants is set to disabled
"]) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/gmail/gmail14_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail14_test.rego similarity index 70% rename from Testing/RegoTests/gmail/gmail14_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail14_test.rego index c13016f2..3086cd94 100644 --- a/Testing/RegoTests/gmail/gmail14_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail14_test.rego @@ -1,13 +1,17 @@ package gmail -import future.keywords +import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestNonCompliant +import data.utils.PassTestResultWithMessage # -# GWS.GMAIL.14.1v0.3 +# GWS.GMAIL.14.1 #-- + test_EmailAllowlist_Correct_V1 if { # Test Email Allowlists when there's only one event - PolicyId := "GWS.GMAIL.14.1v0.3" + PolicyId := GmailId14_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -26,19 +30,14 @@ test_EmailAllowlist_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "Email allowlists are not enabled in ", - "Test Top-Level Domain." - ]) + Message := NonComplianceMessage14_1(GetFriendlyValue14_1("true"), + "Test Top-Level Domain") + PassTestResultWithMessage(PolicyId, Output, Message) } test_EmailAllowlist_Correct_V2 if { # Test Email Allowlists when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.14.1v0.3" + PolicyId := GmailId14_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -67,18 +66,14 @@ test_EmailAllowlist_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "Email allowlists are not enabled in ", - "Test Top-Level Domain." - ])} + Message := NonComplianceMessage14_1(GetFriendlyValue14_1("true"), + "Test Top-Level Domain") + PassTestResultWithMessage(PolicyId, Output, Message) +} test_EmailAllowlist_Incorrect_V1 if { # Test Email Allowlists when there are no relevant events - PolicyId := "GWS.GMAIL.14.1v0.3" + PolicyId := GmailId14_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -97,20 +92,12 @@ test_EmailAllowlist_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs. ", - "While we are unable to determine the state from the logs, ", - "the default setting is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level Domain", true) } test_EmailAllowlist_Incorrect_V2 if { # Test Email Allowlists when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.14.1v0.3" + PolicyId := GmailId14_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -129,16 +116,15 @@ test_EmailAllowlist_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Email allowlists are enabled in Test Top-Level Domain." + FailTestNonCompliant(PolicyId, + Output, + NonComplianceMessage14_1(GetFriendlyValue14_1("false"), + "Test Top-Level Domain")) } test_EmailAllowlist_Incorrect_V3 if { # Test Email Allowlists when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.14.1v0.3" + PolicyId := GmailId14_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -167,10 +153,9 @@ test_EmailAllowlist_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Email allowlists are enabled in Test Top-Level Domain." + FailTestNonCompliant(PolicyId, + Output, + NonComplianceMessage14_1(GetFriendlyValue14_1("false"), + "Test Top-Level Domain")) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/gmail/gmail15_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail15_test.rego similarity index 76% rename from Testing/RegoTests/gmail/gmail15_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail15_test.rego index 4aa16777..5cffbaee 100644 --- a/Testing/RegoTests/gmail/gmail15_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail15_test.rego @@ -1,13 +1,17 @@ package gmail -import future.keywords +import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.GMAIL.15.1v0.3 +# GWS.GMAIL.15.1 #-- + test_EnhancedPreDeliveryMessageScanning_Correct_V1 if { # Test Enhanced Pre-Delivery Message Scanning when there's only one event - PolicyId := "GWS.GMAIL.15.1v0.3" + PolicyId := GmailId15_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -29,16 +33,12 @@ test_EnhancedPreDeliveryMessageScanning_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_EnhancedPreDeliveryMessageScanning_Correct_V2 if { # Test Enhanced Pre-Delivery Message Scanning when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.15.1v0.3" + PolicyId := GmailId15_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -73,16 +73,12 @@ test_EnhancedPreDeliveryMessageScanning_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_EnhancedPreDeliveryMessageScanning_Correct_V3 if { # Test Enhanced Pre-Delivery Message Scanning when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.15.1v0.3" + PolicyId := GmailId15_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -117,16 +113,12 @@ test_EnhancedPreDeliveryMessageScanning_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_EnhancedPreDeliveryMessageScanning_Correct_V4 if { # Test Enhanced Pre-Delivery Message Scanning when there's correct events in multiple OUs and inherited setting - PolicyId := "GWS.GMAIL.15.1v0.3" + PolicyId := GmailId15_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -161,16 +153,12 @@ test_EnhancedPreDeliveryMessageScanning_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_EnhancedPreDeliveryMessageScanning_Incorrect_V1 if { # Test Enhanced Pre-Delivery Message Scanning when there are no relevant events - PolicyId := "GWS.GMAIL.15.1v0.3" + PolicyId := GmailId15_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -189,19 +177,12 @@ test_EnhancedPreDeliveryMessageScanning_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) +} test_EnhancedPreDeliveryMessageScanning_Incorrect_V2 if { # Test Enhanced Pre-Delivery Message Scanning when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.15.1v0.3" + PolicyId := GmailId15_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -223,17 +204,14 @@ test_EnhancedPreDeliveryMessageScanning_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Enhanced pre-delivery message scanning is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage15_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_EnhancedPreDeliveryMessageScanning_Incorrect_V3 if { # Test Enhanced Pre-Delivery Message Scanning when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.15.1v0.3" + PolicyId := GmailId15_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -268,17 +246,14 @@ test_EnhancedPreDeliveryMessageScanning_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Enhanced pre-delivery message scanning is set to disabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage15_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_EnhancedPreDeliveryMessageScanning_Incorrect_V4 if { # Test Enhanced Pre-Delivery Message Scanning when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.15.1v0.3" + PolicyId := GmailId15_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -300,17 +275,14 @@ test_EnhancedPreDeliveryMessageScanning_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Enhanced pre-delivery message scanning is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage15_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_EnhancedPreDeliveryMessageScanning_Incorrect_V5 if { # Test Enhanced Pre-Delivery Message Scanning when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.15.1v0.3" + PolicyId := GmailId15_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -345,21 +317,19 @@ test_EnhancedPreDeliveryMessageScanning_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "Enhanced pre-delivery message scanning is set to disabled
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage15_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- # -# GWS.GMAIL.15.2v0.3 +# GWS.GMAIL.15.2 #-- + test_Other_Correct_V1 if { # Test not implemented - PolicyId := "GWS.GMAIL.15.2v0.3" + PolicyId := GmailId15_2 Output := tests with input as { "gmail_logs": {"items": [ ]}, @@ -374,4 +344,4 @@ test_Other_Correct_V1 if { not RuleOutput[0].NoSuchEvent RuleOutput[0].ReportDetails == "Currently not able to be tested automatically; please manually check." } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/gmail/gmail16_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail16_test.rego similarity index 96% rename from Testing/RegoTests/gmail/gmail16_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail16_test.rego index ff2590bd..c52ca1c7 100644 --- a/Testing/RegoTests/gmail/gmail16_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail16_test.rego @@ -1,13 +1,12 @@ package gmail import future.keywords - # -# GWS.GMAIL.16.1v0.3 +# GWS.GMAIL.16.1 #-- test_SecuritySandbox_Correct_V1 if { # Test Security Sandbox when there's only one event - PolicyId := "GWS.GMAIL.16.1v0.3" + PolicyId := GmailId16_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -35,7 +34,7 @@ test_SecuritySandbox_Correct_V1 if { test_SecuritySandbox_Correct_V2 if { # Test Security Sandbox when there's multiple events and the most recent is correct - PolicyId := "GWS.GMAIL.16.1v0.3" + PolicyId := GmailId16_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -73,7 +72,7 @@ test_SecuritySandbox_Correct_V2 if { test_SecuritySandbox_Correct_V3 if { # Test Security Sandbox when there's correct events in multiple OUs - PolicyId := "GWS.GMAIL.16.1v0.3" + PolicyId := GmailId16_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -111,7 +110,7 @@ test_SecuritySandbox_Correct_V3 if { test_SecuritySandbox_Correct_V4 if { # Test Security Sandbox when there's correct events in multiple OUs and setting is inherited - PolicyId := "GWS.GMAIL.16.1v0.3" + PolicyId := GmailId16_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -149,7 +148,7 @@ test_SecuritySandbox_Correct_V3 if { test_SecuritySandbox_Incorrect_V1 if { # Test Security Sandbox when there are no relevant events - PolicyId := "GWS.GMAIL.16.1v0.3" + PolicyId := GmailId16_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -181,7 +180,7 @@ test_SecuritySandbox_Incorrect_V1 if { test_SecuritySandbox_Incorrect_V2 if { # Test Security Sandbox when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.16.1v0.3" + PolicyId := GmailId16_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -210,7 +209,7 @@ test_SecuritySandbox_Incorrect_V2 if { test_SecuritySandbox_Incorrect_V3 if { # Test Security Sandbox when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.16.1v0.3" + PolicyId := GmailId16_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -249,7 +248,7 @@ test_SecuritySandbox_Incorrect_V3 if { test_SecuritySandbox_Incorrect_V4 if { # Test Security Sandbox when there's only one event and it's wrong - PolicyId := "GWS.GMAIL.16.1v0.3" + PolicyId := GmailId16_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -278,7 +277,7 @@ test_SecuritySandbox_Incorrect_V4 if { test_SecuritySandbox_Incorrect_V5 if { # Test Security Sandbox when there are multiple events and the most recent is wrong - PolicyId := "GWS.GMAIL.16.1v0.3" + PolicyId := GmailId16_1 Output := tests with input as { "gmail_logs": {"items": [ { @@ -317,11 +316,11 @@ test_SecuritySandbox_Incorrect_V5 if { #-- # -# GWS.GMAIL.16.2v0.3 +# GWS.GMAIL.16.2 #-- test_Other_Correct_V1 if { # Test not implemented - PolicyId := "GWS.GMAIL.16.2v0.3" + PolicyId := GmailId16_2 Output := tests with input as { "gmail_logs": {"items": [ ]}, @@ -336,4 +335,4 @@ test_Other_Correct_V1 if { not RuleOutput[0].NoSuchEvent RuleOutput[0].ReportDetails == "Currently not able to be tested automatically; please manually check." } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/gmail/gmail17_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail17_test.rego similarity index 90% rename from Testing/RegoTests/gmail/gmail17_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail17_test.rego index de38a18d..2cfa4fec 100644 --- a/Testing/RegoTests/gmail/gmail17_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail17_test.rego @@ -1,13 +1,12 @@ package gmail import future.keywords - # -# GWS.GMAIL.17.1v0.3 +# GWS.GMAIL.17.1 #-- test_ComprehensiveMailStorage_Correct_V1 if { # Test Comprehensive Mail Storage when there's only one event - PolicyId := "GWS.GMAIL.17.1v0.3" + PolicyId := GmailId17_1 Output := tests with input as { "gmail_logs": {"items": [ ]}, @@ -22,4 +21,4 @@ test_ComprehensiveMailStorage_Correct_V1 if { not RuleOutput[0].NoSuchEvent RuleOutput[0].ReportDetails == "Currently not able to be tested automatically; please manually check." } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/gmail/gmail18_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail18_test.rego similarity index 90% rename from Testing/RegoTests/gmail/gmail18_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail18_test.rego index e279c7ac..873cbe45 100644 --- a/Testing/RegoTests/gmail/gmail18_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail18_test.rego @@ -1,13 +1,12 @@ package gmail import future.keywords - # -# GWS.GMAIL.18.1v0.3 +# GWS.GMAIL.18.1 #-- test_AdvanvedEmailContentFitlering_Correct_V1 if { # Test Advanced Email Content Filtering when there's only one event - PolicyId := "GWS.GMAIL.18.1v0.3" + PolicyId := GmailId18_1 Output := tests with input as { "gmail_logs": {"items": [ ]}, @@ -25,11 +24,11 @@ test_AdvanvedEmailContentFitlering_Correct_V1 if { #-- # -# GWS.GMAIL.18.2v0.3 +# GWS.GMAIL.18.2 #-- test_Other_Correct_V1 if { # Test not implemented - PolicyId := "GWS.GMAIL.18.2v0.3" + PolicyId := GmailId18_2 Output := tests with input as { "gmail_logs": {"items": [ ]}, @@ -47,11 +46,11 @@ test_Other_Correct_V1 if { #-- # -# GWS.GMAIL.18.3v0.3 +# GWS.GMAIL.18.3 #-- test_PII_Correct_V1 if { # Test not implemented - PolicyId := "GWS.GMAIL.18.3v0.3" + PolicyId := GmailId18_3 Output := tests with input as { "gmail_logs": {"items": [ ]}, @@ -66,4 +65,4 @@ test_PII_Correct_V1 if { not RuleOutput[0].NoSuchEvent RuleOutput[0].ReportDetails == "Currently not able to be tested automatically; please manually check." } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/gmail/gmail19_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail19_test.rego similarity index 86% rename from Testing/RegoTests/gmail/gmail19_test.rego rename to scubagoggles/Testing/RegoTests/gmail/gmail19_test.rego index 32d645af..5702980b 100644 --- a/Testing/RegoTests/gmail/gmail19_test.rego +++ b/scubagoggles/Testing/RegoTests/gmail/gmail19_test.rego @@ -1,68 +1,69 @@ -package gmail -import future.keywords - -# -# GWS.GMAIL.19.1v0.3 -#-- -test_Domains_Correct_V1 if { - # Test not implemented - PolicyId := "GWS.GMAIL.19.1v0.3" - Output := tests with input as { - "gmail_logs": {"items": [ - ]}, - "tenant_info": { - "topLevelOU": "" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Currently not able to be tested automatically; please manually check." -} -#-- - -# -# GWS.GMAIL.19.2v0.3 -#-- -test_HideWarnings_Correct_V1 if { - # Test not implemented - PolicyId := "GWS.GMAIL.19.2v0.3" - Output := tests with input as { - "gmail_logs": {"items": [ - ]}, - "tenant_info": { - "topLevelOU": "" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Currently not able to be tested automatically; please manually check." -} -#-- - -# -# GWS.GMAIL.19.3v0.3 -#-- -test_BypassAll_Correct_V1 if { - # Test not implemented - PolicyId := "GWS.GMAIL.19.3v0.3" - Output := tests with input as { - "gmail_logs": {"items": [ - ]}, - "tenant_info": { - "topLevelOU": "" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Currently not able to be tested automatically; please manually check." -} -#-- \ No newline at end of file +package gmail + +import future.keywords + +# +# GWS.GMAIL.19.1 +#-- +test_Domains_Correct_V1 if { + # Test not implemented + PolicyId := GmailId19_1 + Output := tests with input as { + "gmail_logs": {"items": [ + ]}, + "tenant_info": { + "topLevelOU": "" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + not RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == "Currently not able to be tested automatically; please manually check." +} +#-- + +# +# GWS.GMAIL.19.2 +#-- +test_HideWarnings_Correct_V1 if { + # Test not implemented + PolicyId := GmailId19_2 + Output := tests with input as { + "gmail_logs": {"items": [ + ]}, + "tenant_info": { + "topLevelOU": "" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + not RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == "Currently not able to be tested automatically; please manually check." +} +#-- + +# +# GWS.GMAIL.19.3 +#-- +test_BypassAll_Correct_V1 if { + # Test not implemented + PolicyId := GmailId19_3 + Output := tests with input as { + "gmail_logs": {"items": [ + ]}, + "tenant_info": { + "topLevelOU": "" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + not RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == "Currently not able to be tested automatically; please manually check." +} +#-- diff --git a/scubagoggles/Testing/RegoTests/gmail/gmail_api05_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail_api05_test.rego new file mode 100644 index 00000000..c04f31f8 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/gmail/gmail_api05_test.rego @@ -0,0 +1,214 @@ +package gmail + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodGmailApi05 := { + "policies": { + "topOU": { + "gmail_email_attachment_safety": { + "applyFutureRecommendedSettingsAutomatically": true, + "enableAnomalousAttachmentProtection": true, + "enableAttachmentWithScriptsProtection": true, + "enableEncryptedAttachmentProtection": true, + "anomalousAttachmentProtectionConsequence": "SPAM_FOLDER", + "attachmentWithScriptsProtectionConsequence": "QUARANTINE", + "encryptedAttachmentProtectionConsequence": "QUARANTINE" + }, + "gmail_service_status": {"serviceState": "ENABLED" + } + }, + "nextOU": { + }, + "thirdOU": { + "security_session_controls": { + "webSessionDuration": "700m" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGmailApi05 := { + "policies": { + "topOU": { + "gmail_email_attachment_safety": { + "applyFutureRecommendedSettingsAutomatically": false, + "enableAnomalousAttachmentProtection": false, + "enableAttachmentWithScriptsProtection": false, + "enableEncryptedAttachmentProtection": false, + "anomalousAttachmentProtectionConsequence": "WARNING", + "attachmentWithScriptsProtectionConsequence": "WARNING", + "encryptedAttachmentProtectionConsequence": "WARNING" + }, + "gmail_service_status": {"serviceState": "ENABLED" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGmailApi05a := { + "policies": { + "topOU": { + "gmail_email_attachment_safety": { + "applyFutureRecommendedSettingsAutomatically": true, + "enableAnomalousAttachmentProtection": true, + "enableAttachmentWithScriptsProtection": true, + "enableEncryptedAttachmentProtection": true, + "anomalousAttachmentProtectionConsequence": "SPAM_FOLDER", + "attachmentWithScriptsProtectionConsequence": "QUARANTINE", + "encryptedAttachmentProtectionConsequence": "QUARANTINE" + }, + "gmail_service_status": {"serviceState": "ENABLED" + } + }, + "nextOU": { + "gmail_email_attachment_safety": { + "applyFutureRecommendedSettingsAutomatically": false, + "enableAnomalousAttachmentProtection": false, + "enableAttachmentWithScriptsProtection": false, + "enableEncryptedAttachmentProtection": false, + "anomalousAttachmentProtectionConsequence": "WARNING", + "encryptedAttachmentProtectionConsequence": "WARNING" + }, + "gmail_service_status": {"serviceState": "ENABLED" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_Encrypted_Correct_1 if { + PolicyId := GmailId5_1 + Output := tests with input as GoodGmailApi05 + + PassTestResult(PolicyId, Output) +} + +test_Encrypted_Incorrect_1 if { + PolicyId := GmailId5_1 + Output := tests with input as BadGmailApi05 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage5_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_Encrypted_Incorrect_2 if { + PolicyId := GmailId5_1 + Output := tests with input as BadGmailApi05a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage5_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_Scripts_Correct_1 if { + PolicyId := GmailId5_2 + Output := tests with input as GoodGmailApi05 + + PassTestResult(PolicyId, Output) +} + +test_Scripts_Incorrect_1 if { + PolicyId := GmailId5_2 + Output := tests with input as BadGmailApi05 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage5_2("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_Scripts_Incorrect_2 if { + PolicyId := GmailId5_2 + Output := tests with input as BadGmailApi05a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage5_2("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_AnomalousAttach_Correct_1 if { + PolicyId := GmailId5_3 + Output := tests with input as GoodGmailApi05 + + PassTestResult(PolicyId, Output) +} + +test_AnomalousAttach_Incorrect_1 if { + PolicyId := GmailId5_3 + Output := tests with input as BadGmailApi05 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage5_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_AnomalousAttach_Incorrect_2 if { + PolicyId := GmailId5_3 + Output := tests with input as BadGmailApi05a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage5_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_FutureSettings_Correct_1 if { + PolicyId := GmailId5_4 + Output := tests with input as GoodGmailApi05 + + PassTestResult(PolicyId, Output) +} + +test_FutureSettings_Incorrect_1 if { + PolicyId := GmailId5_4 + Output := tests with input as BadGmailApi05 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage5_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_FutureSettings_Incorrect_2 if { + PolicyId := GmailId5_4 + Output := tests with input as BadGmailApi05a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage5_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_AttachConsequence_Correct_1 if { + PolicyId := GmailId5_5 + Output := tests with input as GoodGmailApi05 + + PassTestResult(PolicyId, Output) +} + +test_AttachConsequence_Incorrect_1 if { + PolicyId := GmailId5_5 + Output := tests with input as BadGmailApi05 + + types := ["anomalous type", "encrypted", "scripts"] + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage5_5(types)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_AttachConsequence_Incorrect_2 if { + PolicyId := GmailId5_5 + Output := tests with input as BadGmailApi05a + + types := ["anomalous type", "encrypted"] + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage5_5(types)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/gmail/gmail_api06_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail_api06_test.rego new file mode 100644 index 00000000..786a258e --- /dev/null +++ b/scubagoggles/Testing/RegoTests/gmail/gmail_api06_test.rego @@ -0,0 +1,174 @@ +package gmail + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodGmailApi06 := { + "policies": { + "topOU": { + "gmail_links_and_external_images": { + "applyFutureSettingsAutomatically": true, + "enableAggressiveWarningsOnUntrustedLinks": true, + "enableExternalImageScanning": true, + "enableShortenerScanning": true + }, + }, + "nextOU": { + }, + "thirdOU": { + "security_session_controls": { + "webSessionDuration": "700m" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGmailApi06 := { + "policies": { + "topOU": { + "gmail_links_and_external_images": { + "applyFutureSettingsAutomatically": false, + "enableAggressiveWarningsOnUntrustedLinks": false, + "enableExternalImageScanning": false, + "enableShortenerScanning": false + }, + "gmail_service_status": {"serviceState": "ENABLED" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGmailApi06a := { + "policies": { + "topOU": { + "gmail_links_and_external_images": { + "applyFutureSettingsAutomatically": true, + "enableAggressiveWarningsOnUntrustedLinks": true, + "enableExternalImageScanning": true, + "enableShortenerScanning": true + }, + "gmail_service_status": {"serviceState": "ENABLED" + } + }, + "nextOU": { + "gmail_links_and_external_images": { + "applyFutureSettingsAutomatically": false, + "enableAggressiveWarningsOnUntrustedLinks": false, + "enableExternalImageScanning": false, + "enableShortenerScanning": false + }, + "gmail_service_status": {"serviceState": "ENABLED" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_ShortLinks_Correct_1 if { + PolicyId := GmailId6_1 + Output := tests with input as GoodGmailApi06 + + PassTestResult(PolicyId, Output) +} + +test_ShortLinks_Incorrect_1 if { + PolicyId := GmailId6_1 + Output := tests with input as BadGmailApi06 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage6_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ShortLinks_Incorrect_2 if { + PolicyId := GmailId6_1 + Output := tests with input as BadGmailApi06a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage6_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ScanImages_Correct_1 if { + PolicyId := GmailId6_2 + Output := tests with input as GoodGmailApi06 + + PassTestResult(PolicyId, Output) +} + +test_ScanImages_Incorrect_1 if { + PolicyId := GmailId6_2 + Output := tests with input as BadGmailApi06 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage6_2("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ScanImages_Incorrect_2 if { + PolicyId := GmailId6_2 + Output := tests with input as BadGmailApi06a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage6_2("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_WarnEnabled_Correct_1 if { + PolicyId := GmailId6_3 + Output := tests with input as GoodGmailApi06 + + PassTestResult(PolicyId, Output) +} + +test_WarnEnabled_Incorrect_1 if { + PolicyId := GmailId6_3 + Output := tests with input as BadGmailApi06 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage6_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_WarnEnabled_Incorrect_2 if { + PolicyId := GmailId6_3 + Output := tests with input as BadGmailApi06a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage6_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ApplyFuture_Correct_1 if { + PolicyId := GmailId6_4 + Output := tests with input as GoodGmailApi06 + + PassTestResult(PolicyId, Output) +} + +test_ApplyFuture_Incorrect_1 if { + PolicyId := GmailId6_4 + Output := tests with input as BadGmailApi06 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage6_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_ApplyFuture_Incorrect_2 if { + PolicyId := GmailId6_4 + Output := tests with input as BadGmailApi06a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage6_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/gmail/gmail_api07_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail_api07_test.rego new file mode 100644 index 00000000..4d3007d5 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/gmail/gmail_api07_test.rego @@ -0,0 +1,278 @@ +package gmail + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodGmailApi07 := { + "policies": { + "topOU": { + "gmail_spoofing_and_authentication": { + "applyFutureSettingsAutomatically": true, + "detectDomainNameSpoofing": true, + "detectDomainSpoofingFromUnauthenticatedSenders": true, + "detectEmployeeNameSpoofing": true, + "detectGroupsSpoofing": true, + "detectUnauthenticatedEmails": true, + "domainNameSpoofingConsequence": "SPAM_FOLDER", + "domainSpoofingConsequence": "SPAM_FOLDER", + "employeeNameSpoofingConsequence": "QUARANTINE", + "groupsSpoofingConsequence": "QUARANTINE", + "unauthenticatedEmailConsequence": "QUARANTINE" + }, + }, + "nextOU": { + }, + "thirdOU": { + "security_session_controls": { + "webSessionDuration": "700m" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGmailApi07 := { + "policies": { + "topOU": { + "gmail_spoofing_and_authentication": { + "applyFutureSettingsAutomatically": false, + "detectDomainNameSpoofing": false, + "detectDomainSpoofingFromUnauthenticatedSenders": false, + "detectEmployeeNameSpoofing": false, + "detectGroupsSpoofing": false, + "detectUnauthenticatedEmails": false, + "domainNameSpoofingConsequence": "WARNING", + "domainSpoofingConsequence": "WARNING", + "employeeNameSpoofingConsequence": "WARNING", + "groupsSpoofingConsequence": "WARNING", + "unauthenticatedEmailConsequence": "WARNING" + }, + "gmail_service_status": {"serviceState": "ENABLED" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGmailApi07a := { + "policies": { + "topOU": { + "gmail_spoofing_and_authentication": { + "applyFutureSettingsAutomatically": true, + "detectDomainNameSpoofing": true, + "detectDomainSpoofingFromUnauthenticatedSenders": true, + "detectEmployeeNameSpoofing": true, + "detectGroupsSpoofing": true, + "detectUnauthenticatedEmails": true, + "domainNameSpoofingConsequence": "QUARANTINE", + "domainSpoofingConsequence": "SPAM_FOLDER", + "employeeNameSpoofingConsequence": "QUARANTINE", + "groupsSpoofingConsequence": "SPAM_FOLDER", + "unauthenticatedEmailConsequence": "QUARANTINE" + }, + "gmail_service_status": {"serviceState": "ENABLED" + } + }, + "nextOU": { + "gmail_spoofing_and_authentication": { + "applyFutureSettingsAutomatically": false, + "detectDomainNameSpoofing": false, + "detectDomainSpoofingFromUnauthenticatedSenders": false, + "detectEmployeeNameSpoofing": false, + "detectGroupsSpoofing": false, + "detectUnauthenticatedEmails": false, + "domainNameSpoofingConsequence": "WARNING", + "domainSpoofingConsequence": "WARNING", + "unauthenticatedEmailConsequence": "WARNING" + }, + "gmail_service_status": {"serviceState": "ENABLED" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_DomainNameSpoofing_Correct_1 if { + PolicyId := GmailId7_1 + Output := tests with input as GoodGmailApi07 + + PassTestResult(PolicyId, Output) +} + +test_DomainNameSpoofing_Incorrect_1 if { + PolicyId := GmailId7_1 + Output := tests with input as BadGmailApi07 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage7_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_DomainNameSpoofing_Incorrect_2 if { + PolicyId := GmailId7_1 + Output := tests with input as BadGmailApi07a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage7_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_EmployeeNameSpoofing_Correct_1 if { + PolicyId := GmailId7_2 + Output := tests with input as GoodGmailApi07 + + PassTestResult(PolicyId, Output) +} + +test_EmployeeNameSpoofing_Incorrect_1 if { + PolicyId := GmailId7_2 + Output := tests with input as BadGmailApi07 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage7_2("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_EmployeeNameSpoofing_Incorrect_2 if { + PolicyId := GmailId7_2 + Output := tests with input as BadGmailApi07a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage7_2("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_DomainSpoofing_Correct_1 if { + PolicyId := GmailId7_3 + Output := tests with input as GoodGmailApi07 + + PassTestResult(PolicyId, Output) +} + +test_DomainSpoofing_Incorrect_1 if { + PolicyId := GmailId7_3 + Output := tests with input as BadGmailApi07 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage7_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_DomainSpoofing_Incorrect_2 if { + PolicyId := GmailId7_3 + Output := tests with input as BadGmailApi07a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage7_3("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_UnauthenticatedEmailSpoofing_Correct_1 if { + PolicyId := GmailId7_4 + Output := tests with input as GoodGmailApi07 + + PassTestResult(PolicyId, Output) +} + +test_UnauthenticatedEmailSpoofing_Incorrect_1 if { + PolicyId := GmailId7_4 + Output := tests with input as BadGmailApi07 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage7_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_UnauthenticatedEmailSpoofing_Incorrect_2 if { + PolicyId := GmailId7_4 + Output := tests with input as BadGmailApi07a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage7_4("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_GroupsSpoofing_Correct_1 if { + PolicyId := GmailId7_5 + Output := tests with input as GoodGmailApi07 + + PassTestResult(PolicyId, Output) +} + +test_GroupsSpoofing_Incorrect_1 if { + PolicyId := GmailId7_5 + Output := tests with input as BadGmailApi07 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage7_5("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_GroupsSpoofing_Incorrect_2 if { + PolicyId := GmailId7_5 + Output := tests with input as BadGmailApi07a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage7_5("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_SpoofConsequence_Correct_1 if { + PolicyId := GmailId7_6 + Output := tests with input as GoodGmailApi07 + + PassTestResult(PolicyId, Output) +} + +test_SpoofConsequence_Incorrect_1 if { + PolicyId := GmailId7_6 + Output := tests with input as BadGmailApi07 + + types := ["domain", "domain name", "employee name", "groups", + "unauthenticated"] + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage7_6(types)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_SpoofConsequence_Incorrect_2 if { + PolicyId := GmailId7_6 + Output := tests with input as BadGmailApi07a + + types := ["domain", "domain name", "unauthenticated"] + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage7_6(types)}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_FutureSettings_Correct_1 if { + PolicyId := GmailId7_7 + Output := tests with input as GoodGmailApi07 + + PassTestResult(PolicyId, Output) +} + +test_FutureSettings_Incorrect_1 if { + PolicyId := GmailId7_7 + Output := tests with input as BadGmailApi07 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage7_7("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_FutureSettings_Incorrect_2 if { + PolicyId := GmailId7_7 + Output := tests with input as BadGmailApi07a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage7_7("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/gmail/gmail_api11_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail_api11_test.rego new file mode 100644 index 00000000..9784024f --- /dev/null +++ b/scubagoggles/Testing/RegoTests/gmail/gmail_api11_test.rego @@ -0,0 +1,46 @@ +package gmail + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.GetFriendlyEnabledValue +import data.utils.PassTestResult + +GoodGmailApi11 := { + "policies": { + "topOU": { + "gmail_auto_forwarding": {"enableAutoForwarding": false}, + "gmail_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGmailApi11 := { + "policies": { + "topOU": { + "gmail_auto_forwarding": {"enableAutoForwarding": true}, + "gmail_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_Autoforward_Correct_1 if { + PolicyId := GmailId11_1 + Output := tests with input as GoodGmailApi11 + + PassTestResult(PolicyId, Output) +} + +test_Autoforward_Incorrect_1 if { + PolicyId := GmailId11_1 + Output := tests with input as BadGmailApi11 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage11_1(GetFriendlyEnabledValue(true))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/gmail/gmail_api14_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail_api14_test.rego new file mode 100644 index 00000000..ad935a46 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/gmail/gmail_api14_test.rego @@ -0,0 +1,48 @@ +package gmail + +import future.keywords +import data.utils.FailTestNonCompliant +import data.utils.PassTestResultWithMessage + +GoodGmailApi14 := { + "policies": { + "topOU": { + "gmail_email_spam_filter_ip_allowlist": {"allowedIpAddresses": []}, + "gmail_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGmailApi14 := { + "policies": { + "topOU": { + "gmail_email_spam_filter_ip_allowlist": { + "allowedIpAddresses": ["8.8.8.8/24"]}, + "gmail_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_Allowlist_Correct_1 if { + PolicyId := GmailId14_1 + Output := tests with input as GoodGmailApi14 + + Message := NonComplianceMessage14_1(GetFriendlyValue14_1(false), "topOU") + PassTestResultWithMessage(PolicyId, Output, Message) +} + +test_Allowlist_Incorrect_1 if { + PolicyId := GmailId14_1 + Output := tests with input as BadGmailApi14 + + FailTestNonCompliant(PolicyId, + Output, + NonComplianceMessage14_1(GetFriendlyValue14_1(true), + "topOU")) +} diff --git a/scubagoggles/Testing/RegoTests/gmail/gmail_api15_test.rego b/scubagoggles/Testing/RegoTests/gmail/gmail_api15_test.rego new file mode 100644 index 00000000..72a4bb02 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/gmail/gmail_api15_test.rego @@ -0,0 +1,73 @@ +package gmail + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodGmailApi15 := { + "policies": { + "topOU": { + "gmail_enhanced_pre_delivery_message_scanning": { + "enableImprovedSuspiciousContentDetection": true}, + "gmail_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGmailApi15 := { + "policies": { + "topOU": { + "gmail_enhanced_pre_delivery_message_scanning": { + "enableImprovedSuspiciousContentDetection": false}, + "gmail_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGmailApi15a := { + "policies": { + "topOU": { + "gmail_enhanced_pre_delivery_message_scanning": { + "enableImprovedSuspiciousContentDetection": true}, + "gmail_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "gmail_enhanced_pre_delivery_message_scanning": { + "enableImprovedSuspiciousContentDetection": false}, + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_PreScanning_Correct_1 if { + PolicyId := GmailId15_1 + Output := tests with input as GoodGmailApi15 + + PassTestResult(PolicyId, Output) +} + +test_PreScanning_Incorrect_1 if { + PolicyId := GmailId15_1 + Output := tests with input as BadGmailApi15 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage15_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_PreScanning_Incorrect_2 if { + PolicyId := GmailId15_1 + Output := tests with input as BadGmailApi15a + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage15_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/Testing/RegoTests/groups/groups01_test.rego b/scubagoggles/Testing/RegoTests/groups/groups01_test.rego similarity index 70% rename from Testing/RegoTests/groups/groups01_test.rego rename to scubagoggles/Testing/RegoTests/groups/groups01_test.rego index 4e72cba2..0b2e2f12 100644 --- a/Testing/RegoTests/groups/groups01_test.rego +++ b/scubagoggles/Testing/RegoTests/groups/groups01_test.rego @@ -1,13 +1,16 @@ package groups -import future.keywords +import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # # Policy 1 #-- test_GroupAccess_Correct_V1 if { # Test group access when there's only one event - PolicyId := "GWS.GROUPS.1.1v0.3" + PolicyId := GroupsId1_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -26,16 +29,12 @@ test_GroupAccess_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_GroupAccess_Correct_V2 if { # Test group access when there's multiple events and the most most recent is correct - PolicyId := "GWS.GROUPS.1.1v0.3" + PolicyId := GroupsId1_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -64,16 +63,12 @@ test_GroupAccess_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_GroupsAccess_Incorrect_V1 if { # Test group access when there are no relevant events - PolicyId := "GWS.GROUPS.1.1v0.3" + PolicyId := GroupsId1_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -92,21 +87,13 @@ test_GroupsAccess_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } #TODO test_GroupAccess_Incorrect_V2 if { # Test group access when there's only one event and it's wrong - PolicyId := "GWS.GROUPS.1.1v0.3" + PolicyId := GroupsId1_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -125,17 +112,14 @@ test_GroupAccess_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Group access from outside the organization is enabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_1("Any user")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #TODO test_GroupAccess_Incorrect_V3 if { # Test group access when there are multiple events and the most recent is wrong - PolicyId := "GWS.GROUPS.1.1v0.3" + PolicyId := GroupsId1_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -164,11 +148,8 @@ test_GroupAccess_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Group access from outside the organization is enabled
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_1("Any user")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/groups/groups02_test.rego b/scubagoggles/Testing/RegoTests/groups/groups02_test.rego similarity index 73% rename from Testing/RegoTests/groups/groups02_test.rego rename to scubagoggles/Testing/RegoTests/groups/groups02_test.rego index b6ff1606..58fc25f8 100644 --- a/Testing/RegoTests/groups/groups02_test.rego +++ b/scubagoggles/Testing/RegoTests/groups/groups02_test.rego @@ -1,13 +1,16 @@ package groups -import future.keywords +import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # # Policy 1 #-- test_GroupAddExternal_Correct_V1 if { # Test group owners' ability to add external memebers when there's only one event - PolicyId := "GWS.GROUPS.2.1v0.3" + PolicyId := GroupsId2_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -29,17 +32,13 @@ test_GroupAddExternal_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_GroupAddExternal_Correct_V2 if { # Test group owners' ability to add external memebers when there's # multiple events and the most most recent is correct - PolicyId := "GWS.GROUPS.2.1v0.3" + PolicyId := GroupsId2_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -74,16 +73,12 @@ test_GroupAddExternal_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_GroupAddExternal_Incorrect_V1 if { # Test group owners' ability to add external memebers when there are no relevant events - PolicyId := "GWS.GROUPS.2.1v0.3" + PolicyId := GroupsId2_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -102,20 +97,12 @@ test_GroupAddExternal_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_GroupAddExternal_Incorrect_V2 if { # Test group owners' ability to add external memebers when there's only one event and it's wrong - PolicyId := "GWS.GROUPS.2.1v0.3" + PolicyId := GroupsId2_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -137,17 +124,14 @@ test_GroupAddExternal_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Group owners have the ability to add external members to the group
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1("Yes")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_GroupAddExternal_Incorrect_V3 if { # Test group owners' ability to add external memebers when there are multiple events and the most recent is wrong - PolicyId := "GWS.GROUPS.2.1v0.3" + PolicyId := GroupsId2_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -182,11 +166,8 @@ test_GroupAddExternal_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Group owners have the ability to add external members to the group
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1("Yes")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/groups/groups03_test.rego b/scubagoggles/Testing/RegoTests/groups/groups03_test.rego similarity index 73% rename from Testing/RegoTests/groups/groups03_test.rego rename to scubagoggles/Testing/RegoTests/groups/groups03_test.rego index bc41feec..a5de1be4 100644 --- a/Testing/RegoTests/groups/groups03_test.rego +++ b/scubagoggles/Testing/RegoTests/groups/groups03_test.rego @@ -1,13 +1,16 @@ package groups -import future.keywords +import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # # Policy 1 #-- test_GroupIncomingMailPosting_Correct_V1 if { # Test group owners' ability to allow incoming mail for posting group messages when there's only one event - PolicyId := "GWS.GROUPS.3.1v0.3" + PolicyId := GroupsId3_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -29,17 +32,13 @@ test_GroupIncomingMailPosting_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_GroupIncomingMailPosting_Correct_V2 if { # Test group owners' ability to allow incoming mail for posting group messages when # there's multiple events and the most most recent is correct - PolicyId := "GWS.GROUPS.3.1v0.3" + PolicyId := GroupsId3_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -74,16 +73,12 @@ test_GroupIncomingMailPosting_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_GroupIncomingMailPosting_Incorrect_V1 if { # Test group owners' ability to allow incoming mail for posting group messages when there are no relevant events - PolicyId := "GWS.GROUPS.3.1v0.3" + PolicyId := GroupsId3_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -102,21 +97,13 @@ test_GroupIncomingMailPosting_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_GroupIncomingMailPosting_Incorrect_V2 if { # Test group owners' ability to allow incoming mail for posting group messages when # there's only one event and it's wrong - PolicyId := "GWS.GROUPS.3.1v0.3" + PolicyId := GroupsId3_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -138,19 +125,15 @@ test_GroupIncomingMailPosting_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Group owners have the ability to allow an ", - "external non-group member to post to the group
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("Yes")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_GroupIncomingMailPosting_Incorrect_V3 if { # Test group owners' ability to allow incoming mail for posting group messages # when there are multiple events and the most recent is wrong - PolicyId := "GWS.GROUPS.3.1v0.3" + PolicyId := GroupsId3_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -185,12 +168,8 @@ test_GroupIncomingMailPosting_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Group owners have the ability to allow an ", - "external non-group member to post to the group
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("Yes")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/groups/groups04_test.rego b/scubagoggles/Testing/RegoTests/groups/groups04_test.rego similarity index 70% rename from Testing/RegoTests/groups/groups04_test.rego rename to scubagoggles/Testing/RegoTests/groups/groups04_test.rego index 0f3cf275..99a74fc6 100644 --- a/Testing/RegoTests/groups/groups04_test.rego +++ b/scubagoggles/Testing/RegoTests/groups/groups04_test.rego @@ -1,13 +1,16 @@ package groups -import future.keywords +import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # # Policy 1 #-- test_GroupCreation_Correct_V1 if { # Test group creation restrictions when there's only one event - PolicyId := "GWS.GROUPS.4.1v0.3" + PolicyId := GroupsId4_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -26,15 +29,12 @@ test_GroupCreation_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } + test_GroupCreation_Correct_V2 if { # Test group creation restrictions when there's multiple events and the most most recent is correct - PolicyId := "GWS.GROUPS.4.1v0.3" + PolicyId := GroupsId4_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -63,16 +63,12 @@ test_GroupCreation_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_GroupCreation_Incorrect_V1 if { # Test group creation restrictions when there are no relevant events - PolicyId := "GWS.GROUPS.4.1v0.3" + PolicyId := GroupsId4_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -91,20 +87,12 @@ test_GroupCreation_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_GroupCreation_Incorrect_V2 if { # Test group creation restrictions when there's only one event and it's wrong - PolicyId := "GWS.GROUPS.4.1v0.3" + PolicyId := GroupsId4_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -123,18 +111,14 @@ test_GroupCreation_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Anyone in the organization can create groups
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1("Users in your domain only")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_GroupCreation_Incorrect_V3 if { # Test group creation restrictions when there are multiple events and the most recent is wrong - PolicyId := "GWS.GROUPS.4.1v0.3" + PolicyId := GroupsId4_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -163,19 +147,15 @@ test_GroupCreation_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Anyone in the organization can create groups
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1("Users in your domain only")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- test_GroupCreation_Incorrect_V4 if { # Test group creation restrictions when there's only one event and it's wrong - PolicyId := "GWS.GROUPS.4.1v0.3" + PolicyId := GroupsId4_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -194,18 +174,14 @@ test_GroupCreation_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Anyone on the internet can create groups
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1("Any user")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_GroupCreation_Incorrect_V5 if { # Test group creation restrictions when there are multiple events and the most recent is wrong - PolicyId := "GWS.GROUPS.4.1v0.3" + PolicyId := GroupsId4_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -234,12 +210,8 @@ test_GroupCreation_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Anyone on the internet can create groups
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1("Any user")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/groups/groups05_test.rego b/scubagoggles/Testing/RegoTests/groups/groups05_test.rego similarity index 73% rename from Testing/RegoTests/groups/groups05_test.rego rename to scubagoggles/Testing/RegoTests/groups/groups05_test.rego index d2117a8e..96e6f84e 100644 --- a/Testing/RegoTests/groups/groups05_test.rego +++ b/scubagoggles/Testing/RegoTests/groups/groups05_test.rego @@ -1,5 +1,9 @@ package groups + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # @@ -7,7 +11,7 @@ import future.keywords #-- test_GroupConservationViewPermission_Correct_V1 if { # Test group conversation view permissions when there's only one event - PolicyId := "GWS.GROUPS.5.1v0.3" + PolicyId := GroupsId5_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -29,16 +33,12 @@ test_GroupConservationViewPermission_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_GroupConservationViewPermission_Correct_V2 if { # Test group conversation view permissions when there's multiple events and the most most recent is correct - PolicyId := "GWS.GROUPS.5.1v0.3" + PolicyId := GroupsId5_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -73,16 +73,12 @@ test_GroupConservationViewPermission_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails =="Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_GroupConservationViewPermission_Incorrect_V1 if { # Test group conversation view permissions when there are no relevant events - PolicyId := "GWS.GROUPS.5.1v0.3" + PolicyId := GroupsId5_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -101,20 +97,12 @@ test_GroupConservationViewPermission_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_GroupConservationViewPermission_Incorrect_V2 if { # Test group conversation view permissions when there's only one event and it's wrong - PolicyId := "GWS.GROUPS.5.1v0.3" + PolicyId := GroupsId5_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -136,18 +124,14 @@ test_GroupConservationViewPermission_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Permission to view conversations is set to domain users
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_1("Users in your domain only")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_GroupConservationViewPermission_Incorrect_V3 if { # Test group conversation view permissions when there's only one event and it's wrong - PolicyId := "GWS.GROUPS.5.1v0.3" + PolicyId := GroupsId5_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -169,18 +153,14 @@ test_GroupConservationViewPermission_Incorrect_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Permission to view conversations is set to managers
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_1("Managers")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_GroupConservationViewPermission_Incorrect_V4 if { # Test group conversation view permissions when there's only one event and it's wrong - PolicyId := "GWS.GROUPS.5.1v0.3" + PolicyId := GroupsId5_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -202,18 +182,14 @@ test_GroupConservationViewPermission_Incorrect_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Permission to view conversations is set to owners
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_1("Owners")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_GroupConservationViewPermission_Incorrect_V5 if { # Test group conversation view permissions when there are multiple events and the most recent is wrong - PolicyId := "GWS.GROUPS.5.1v0.3" + PolicyId := GroupsId5_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -248,18 +224,14 @@ test_GroupConservationViewPermission_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Permission to view conversations is set to domain users
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_1("Users in your domain only")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_GroupConservationViewPermission_Incorrect_V6 if { # Test group conversation view permissions when there are multiple events and the most recent is wrong - PolicyId := "GWS.GROUPS.5.1v0.3" + PolicyId := GroupsId5_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -294,18 +266,14 @@ test_GroupConservationViewPermission_Incorrect_V6 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Permission to view conversations is set to managers
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_1("Managers")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_GroupConservationViewPermission_Incorrect_V7 if { # Test group conversation view permissions when there are multiple events and the most recent is wrong - PolicyId := "GWS.GROUPS.5.1v0.3" + PolicyId := GroupsId5_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -340,19 +308,16 @@ test_GroupConservationViewPermission_Incorrect_V7 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Permission to view conversations is set to owners
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_1("Owners")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- test_GroupConservationViewPermission_Incorrect_V8 if { - # Test group conversation view permissions when there are multiple events and the most recent is wrong - PolicyId := "GWS.GROUPS.5.1v0.3" + # Test group conversation view permissions when there are multiple events + # and the most recent is wrong + PolicyId := GroupsId5_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -387,12 +352,8 @@ test_GroupConservationViewPermission_Incorrect_V8 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:", - "
  • Test Top-Level OU: ", - "Permission to view conversations is set to anyone on the internet
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage5_1("Any user")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -#-- \ No newline at end of file +#-- diff --git a/Testing/RegoTests/groups/groups06_test.rego b/scubagoggles/Testing/RegoTests/groups/groups06_test.rego similarity index 72% rename from Testing/RegoTests/groups/groups06_test.rego rename to scubagoggles/Testing/RegoTests/groups/groups06_test.rego index 1cb2df7e..6cf64e9a 100644 --- a/Testing/RegoTests/groups/groups06_test.rego +++ b/scubagoggles/Testing/RegoTests/groups/groups06_test.rego @@ -1,5 +1,9 @@ package groups + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # @@ -7,7 +11,7 @@ import future.keywords #-- test_GroupOwnersHideGroups_Correct_V1 if { # Test group owners' ability to hide groups when there's only one event - PolicyId := "GWS.GROUPS.6.1v0.3" + PolicyId := GroupsId6_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -26,16 +30,12 @@ test_GroupOwnersHideGroups_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_GroupOwnersHideGroups_Correct_V2 if { # Test group owners' ability to hide groups when there's multiple events and the most most recent is correct - PolicyId := "GWS.GROUPS.6.1v0.3" + PolicyId := GroupsId6_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -64,16 +64,12 @@ test_GroupOwnersHideGroups_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_GroupOwnersHideGroups_Incorrect_V1 if { # Test group owners' ability to hide groups when there are no relevant events - PolicyId := "GWS.GROUPS.6.1v0.3" + PolicyId := GroupsId6_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -92,20 +88,12 @@ test_GroupOwnersHideGroups_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } test_GroupOwnersHideGroups_Incorrect_V2 if { # Test group owners' ability to hide groups when there's only one event and it's wrong - PolicyId := "GWS.GROUPS.6.1v0.3" + PolicyId := GroupsId6_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -124,17 +112,14 @@ test_GroupOwnersHideGroups_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Groups can be hidden from the directory
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage6_1("Yes")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_GroupOwnersHideGroups_Incorrect_V3 if { # Test group owners' ability to hide groups when there are multiple events and the most recent is wrong - PolicyId := "GWS.GROUPS.6.1v0.3" + PolicyId := GroupsId6_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -163,16 +148,13 @@ test_GroupOwnersHideGroups_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Groups can be hidden from the directory
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage6_1("Yes")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_GroupOwnersHideGroups_Incorrect_V4 if { - PolicyId := "GWS.GROUPS.6.1v0.3" + PolicyId := GroupsId6_1 Output := tests with input as { "groups_logs": {"items": [ { @@ -201,11 +183,8 @@ test_GroupOwnersHideGroups_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Groups can be hidden from the directory
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage6_1("Yes")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -#-- \ No newline at end of file +#-- diff --git a/scubagoggles/Testing/RegoTests/groups/groups_api01_test.rego b/scubagoggles/Testing/RegoTests/groups/groups_api01_test.rego new file mode 100644 index 00000000..e92f6e92 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/groups/groups_api01_test.rego @@ -0,0 +1,56 @@ +package groups + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodGroupsApi01 := { + "policies": { + "topOU": { + "groups_for_business_groups_sharing": { + "collaborationCapability": "DOMAIN_USERS_ONLY" + }, + "groups_for_business_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + }, + "thirdOU": { + "security_session_controls": { + "webSessionDuration": "700m" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGroupsApi01 := { + "policies": { + "topOU": { + "groups_for_business_groups_sharing": { + "collaborationCapability": "ANYONE_CAN_ACCESS" + }, + "groups_for_business_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_GroupsAPI_Collaboration_Correct_1 if { + PolicyId := GroupsId1_1 + Output := tests with input as GoodGroupsApi01 + + PassTestResult(PolicyId, Output) +} + +test_GroupsAPI_Collaboration_Incorrect_1 if { + PolicyId := GroupsId1_1 + Output := tests with input as BadGroupsApi01 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage1_1("Any user")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/groups/groups_api02_test.rego b/scubagoggles/Testing/RegoTests/groups/groups_api02_test.rego new file mode 100644 index 00000000..61c38263 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/groups/groups_api02_test.rego @@ -0,0 +1,56 @@ +package groups + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodGroupsApi02 := { + "policies": { + "topOU": { + "groups_for_business_groups_sharing": { + "ownersCanAllowExternalMembers": false + }, + "groups_for_business_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + }, + "thirdOU": { + "security_session_controls": { + "webSessionDuration": "700m" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGroupsApi02 := { + "policies": { + "topOU": { + "groups_for_business_groups_sharing": { + "ownersCanAllowExternalMembers": true + }, + "groups_for_business_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_GroupsAPI_ExternalAccess_Correct_1 if { + PolicyId := GroupsId2_1 + Output := tests with input as GoodGroupsApi02 + + PassTestResult(PolicyId, Output) +} + +test_GroupsAPI_ExternalAccess_Incorrect_1 if { + PolicyId := GroupsId2_1 + Output := tests with input as BadGroupsApi02 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage2_1("Yes")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/groups/groups_api03_test.rego b/scubagoggles/Testing/RegoTests/groups/groups_api03_test.rego new file mode 100644 index 00000000..e1a05152 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/groups/groups_api03_test.rego @@ -0,0 +1,56 @@ +package groups + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodGroupsApi03 := { + "policies": { + "topOU": { + "groups_for_business_groups_sharing": { + "ownersCanAllowIncomingMailFromPublic": false + }, + "groups_for_business_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + }, + "thirdOU": { + "security_session_controls": { + "webSessionDuration": "700m" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGroupsApi03 := { + "policies": { + "topOU": { + "groups_for_business_groups_sharing": { + "ownersCanAllowIncomingMailFromPublic": true + }, + "groups_for_business_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_GroupsAPI_ExternalEmail_Correct_1 if { + PolicyId := GroupsId3_1 + Output := tests with input as GoodGroupsApi03 + + PassTestResult(PolicyId, Output) +} + +test_GroupsAPI_ExternalEmail_Incorrect_1 if { + PolicyId := GroupsId3_1 + Output := tests with input as BadGroupsApi03 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage3_1("Yes")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/groups/groups_api04_test.rego b/scubagoggles/Testing/RegoTests/groups/groups_api04_test.rego new file mode 100644 index 00000000..5f24afc4 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/groups/groups_api04_test.rego @@ -0,0 +1,63 @@ +package groups + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodGroupsApi04 := { + "policies": { + "topOU": { + "groups_for_business_groups_sharing": { + "createGroupsAccessLevel": "ADMIN_ONLY" + }, + "groups_for_business_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + }, + "thirdOU": { + "security_session_controls": { + "webSessionDuration": "700m" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGroupsApi04 := { + "policies": { + "topOU": { + "groups_for_business_groups_sharing": { + "createGroupsAccessLevel": "USERS_IN_DOMAIN" + }, + "groups_for_business_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "groups_for_business_groups_sharing": { + "createGroupsAccessLevel": "ANYONE_CAN_CREATE" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_GroupsAPI_Creator_Correct_1 if { + PolicyId := GroupsId4_1 + Output := tests with input as GoodGroupsApi04 + + PassTestResult(PolicyId, Output) +} + +test_GroupsAPI_Creator_Incorrect_1 if { + PolicyId := GroupsId4_1 + Output := tests with input as BadGroupsApi04 + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage4_1("Any user")}, + {"Name": "topOU", + "Value": NonComplianceMessage4_1("Users in your domain only")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/groups/groups_api05_test.rego b/scubagoggles/Testing/RegoTests/groups/groups_api05_test.rego new file mode 100644 index 00000000..bd6860d8 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/groups/groups_api05_test.rego @@ -0,0 +1,63 @@ +package groups + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodGroupsApi05 := { + "policies": { + "topOU": { + "groups_for_business_groups_sharing": { + "viewTopicsDefaultAccessLevel": "GROUP_MEMBERS" + }, + "groups_for_business_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + }, + "thirdOU": { + "security_session_controls": { + "webSessionDuration": "700m" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGroupsApi05 := { + "policies": { + "topOU": { + "groups_for_business_groups_sharing": { + "viewTopicsDefaultAccessLevel": "MANAGERS" + }, + "groups_for_business_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "groups_for_business_groups_sharing": { + "viewTopicsDefaultAccessLevel": "ANYONE_CAN_VIEW_TOPICS" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_GroupsAPI_ViewTopics_Correct_1 if { + PolicyId := GroupsId5_1 + Output := tests with input as GoodGroupsApi05 + + PassTestResult(PolicyId, Output) +} + +test_GroupsAPI_ViewTopics_Incorrect_1 if { + PolicyId := GroupsId5_1 + Output := tests with input as BadGroupsApi05 + + failedOU := [{"Name": "nextOU", + "Value": NonComplianceMessage5_1("Any user")}, + {"Name": "topOU", + "Value": NonComplianceMessage5_1("Managers")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/groups/groups_api06_test.rego b/scubagoggles/Testing/RegoTests/groups/groups_api06_test.rego new file mode 100644 index 00000000..43ffca93 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/groups/groups_api06_test.rego @@ -0,0 +1,49 @@ +package groups + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodGroupsApi06 := { + "policies": { + "topOU": { + "groups_for_business_groups_sharing": { + "ownersCanHideGroups": false + }, + "groups_for_business_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadGroupsApi06 := { + "policies": { + "topOU": { + "groups_for_business_groups_sharing": { + "ownersCanHideGroups": true + }, + "groups_for_business_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_GroupsAPI_HiddenGroups_Correct_1 if { + PolicyId := GroupsId6_1 + Output := tests with input as GoodGroupsApi06 + + PassTestResult(PolicyId, Output) +} + +test_GroupsAPI_HiddenGroups_Incorrect_1 if { + PolicyId := GroupsId6_1 + Output := tests with input as BadGroupsApi06 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage6_1("Yes")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/Testing/RegoTests/meet/meet01_test.rego b/scubagoggles/Testing/RegoTests/meet/meet01_test.rego similarity index 71% rename from Testing/RegoTests/meet/meet01_test.rego rename to scubagoggles/Testing/RegoTests/meet/meet01_test.rego index e8104739..89d918c9 100644 --- a/Testing/RegoTests/meet/meet01_test.rego +++ b/scubagoggles/Testing/RegoTests/meet/meet01_test.rego @@ -1,13 +1,18 @@ package meet -import future.keywords +import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestGroupNonCompliant +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.MEET.1.1v0.3 +# GWS.MEET.1.1 #-- + test_Access_Correct_V1 if { # Test meeting access when there's only one event - PolicyId := "GWS.MEET.1.1v0.3" + PolicyId := MeetId1_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -26,16 +31,12 @@ test_Access_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Access_Correct_V2 if { # Test meeting access when there's multiple events and the most most recent is correct - PolicyId := "GWS.MEET.1.1v0.3" + PolicyId := MeetId1_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -64,16 +65,12 @@ test_Access_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Access_Correct_V3 if { # Test meeting access when there are events in multiple OUs - PolicyId := "GWS.MEET.1.1v0.3" + PolicyId := MeetId1_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -102,16 +99,12 @@ test_Access_Correct_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Access_Correct_V4 if { # Test history setting when set to inherit from parent - PolicyId := "GWS.MEET.1.1v0.3" + PolicyId := MeetId1_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -150,16 +143,12 @@ test_Access_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Access_Incorrect_V1 if { # Test meeting access when there are no relevant events - PolicyId := "GWS.MEET.1.1v0.3" + PolicyId := MeetId1_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -178,20 +167,12 @@ test_Access_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_Access_Incorrect_V2 if { # Test meeting access when there's only one event and it's wrong - PolicyId := "GWS.MEET.1.1v0.3" + PolicyId := MeetId1_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -210,17 +191,14 @@ test_Access_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Who can join meetings is set to all users (including users not signed in with a Google account)
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1("ALL"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Access_Incorrect_V3 if { # Test meeting access when there are multiple events and the most recent is wrong - PolicyId := "GWS.MEET.1.1v0.3" + PolicyId := MeetId1_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -249,17 +227,14 @@ test_Access_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Who can join meetings is set to all users (including users not signed in with a Google account)
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1("ALL"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Access_Incorrect_V4 if { # Test allow user to change history setting when there are multiple OU and a secondary OU is wrong - PolicyId := "GWS.MEET.1.1v0.3" + PolicyId := MeetId1_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -288,18 +263,15 @@ test_Access_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Secondary OU: ", - "Who can join meetings is set to all users (including users not signed in with a Google account)
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1("ALL"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- test_Access_Incorrect_V5 if { # Test allow user to change history setting when the primary OU is missing but a different one is present - PolicyId := "GWS.MEET.1.1v0.3" + PolicyId := MeetId1_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -318,19 +290,12 @@ test_Access_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} test_Access_Incorrect_V6 if { # Test meeting access when there's only one event and it's wrong - PolicyId := "GWS.MEET.1.1v0.3" + PolicyId := MeetId1_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -349,17 +314,14 @@ test_Access_Incorrect_V6 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Who can join meetings is set to all users (including users not signed in with a Google account)
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1("ALL"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Access_Incorrect_V7 if { # Test meeting access when there are multiple events and the most recent is wrong - PolicyId := "GWS.MEET.1.1v0.3" + PolicyId := MeetId1_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -388,17 +350,14 @@ test_Access_Incorrect_V7 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Who can join meetings is set to all users (including users not signed in with a Google account)
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1("ALL"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Access_Incorrect_V8 if { # Test allow user to change history setting when there are multiple OU and a secondary OU is wrong - PolicyId := "GWS.MEET.1.1v0.3" + PolicyId := MeetId1_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -427,18 +386,15 @@ test_Access_Incorrect_V8 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Secondary OU: ", - "Who can join meetings is set to all users (including users not signed in with a Google account)
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1("ALL"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- test_Access_Incorrect_V9 if { # Test allow user to change history setting when the primary OU is missing but a different one is present - PolicyId := "GWS.MEET.1.1v0.3" + PolicyId := MeetId1_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -457,20 +413,13 @@ test_Access_Incorrect_V9 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ])} + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) +} #-- test_Access_Incorrect_V10 if { # Test group wrong - PolicyId := "GWS.MEET.1.1v0.3" + PolicyId := MeetId1_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -505,14 +454,7 @@ test_Access_Incorrect_V10 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following groups are non-compliant:
    ", - "
  • group@example.com: Who can join meetings is set to all users ", - "(including users not signed in with a Google account)
  • ", - "
" - ]) + failedGroup := [{"Name": "group@example.com", + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1("ALL"))}] + FailTestGroupNonCompliant(PolicyId, Output, failedGroup) } diff --git a/Testing/RegoTests/meet/meet02_test.rego b/scubagoggles/Testing/RegoTests/meet/meet02_test.rego similarity index 73% rename from Testing/RegoTests/meet/meet02_test.rego rename to scubagoggles/Testing/RegoTests/meet/meet02_test.rego index 06d06b8c..6fa45fd4 100644 --- a/Testing/RegoTests/meet/meet02_test.rego +++ b/scubagoggles/Testing/RegoTests/meet/meet02_test.rego @@ -1,13 +1,18 @@ package meet -import future.keywords +import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestGroupNonCompliant +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # # Baseline 2 - Policy 1 #-- + test_JoinExternalPers_Correct_V1 if { # Test meeting access when there's only one event - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -26,16 +31,12 @@ test_JoinExternalPers_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_JoinExternalPers_Correct_V2 if { # Test meeting access when there's multiple events and the most most recent is correct - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -64,16 +65,12 @@ test_JoinExternalPers_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_JoinExternalPers_Correct_V3 if { # Test meeting access when there's multiple events and the most most recent is correct - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -102,16 +99,12 @@ test_JoinExternalPers_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_History_Correct_V4 if { # Test history setting when set to inherit from parent - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -150,16 +143,12 @@ test_History_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_JoinExternalPers_Correct_V5 if { # Test meeting access when there's only one event - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -178,16 +167,12 @@ test_JoinExternalPers_Correct_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_JoinExternalPers_Correct_V6 if { # Test meeting access when there's multiple events and the most most recent is correct - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -216,16 +201,12 @@ test_JoinExternalPers_Correct_V6 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_JoinExternalPers_Correct_V7 if { # Test meeting access when there's multiple events and the most most recent is correct - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -254,16 +235,12 @@ test_JoinExternalPers_Correct_V7 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_History_Correct_V8 if { # Test history setting when set to inherit from parent - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -302,16 +279,12 @@ test_History_Correct_V8 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_JoinExternalPers_Incorrect_V1 if { # Test meeting access when there are no relevant events - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -330,20 +303,12 @@ test_JoinExternalPers_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_JoinExternalPers_Incorrect_V2 if { # Test meeting access when there's only one event and it's wrong - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -362,19 +327,14 @@ test_JoinExternalPers_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].Criticality == "Shall" - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "What meetings can org users join is set to any meetings, ", - "including meetings created with personal accounts
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1("ALL"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_JoinExternalPers_Incorrect_V3 if { # Test meeting access when there are multiple events and the most recent is wrong - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -403,18 +363,14 @@ test_JoinExternalPers_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "What meetings can org users join is set to any meetings, ", - "including meetings created with personal accounts
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1("ALL"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_JoinExternalPers_Incorrect_V4 if { # Test allow user to change history setting when there are multiple OU and a secondary OU is wrong - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -443,19 +399,15 @@ test_JoinExternalPers_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Secondary OU: ", - "What meetings can org users join is set to any meetings, ", - "including meetings created with personal accounts
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1("ALL"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- test_JoinExternalPers_Incorrect_V5 if { # Test allow user to change history setting when the primary OU is missing but a different one is present - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -474,20 +426,12 @@ test_JoinExternalPers_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_JoinExternalPers_Incorrect_V6 if { # Test meeting access when there's only one event and it's wrong - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -506,19 +450,14 @@ test_JoinExternalPers_Incorrect_V6 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].Criticality == "Shall" - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "What meetings can org users join is set to any meetings, ", - "including meetings created with personal accounts
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1("ALL"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_JoinExternalPers_Incorrect_V7 if { # Test meeting access when there are multiple events and the most recent is wrong - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -547,18 +486,14 @@ test_JoinExternalPers_Incorrect_V7 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Secondary OU: ", - "What meetings can org users join is set to any meetings, ", - "including meetings created with personal accounts
"]) + failedOU := [{"Name": "Secondary OU", + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1("ALL"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_JoinExternalPers_Incorrect_V8 if { # Test group wrong - PolicyId := "GWS.MEET.2.1v0.3" + PolicyId := MeetId2_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -593,14 +528,7 @@ test_JoinExternalPers_Incorrect_V8 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following groups are non-compliant:
    ", - "
  • group@example.com: What meetings can org users join is set to ", - "any meetings, including meetings created with personal accounts
  • ", - "
" - ]) + failedGroup := [{"Name": "group@example.com", + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1("ALL"))}] + FailTestGroupNonCompliant(PolicyId, Output, failedGroup) } diff --git a/Testing/RegoTests/meet/meet03_test.rego b/scubagoggles/Testing/RegoTests/meet/meet03_test.rego similarity index 73% rename from Testing/RegoTests/meet/meet03_test.rego rename to scubagoggles/Testing/RegoTests/meet/meet03_test.rego index 85ffacad..60558534 100644 --- a/Testing/RegoTests/meet/meet03_test.rego +++ b/scubagoggles/Testing/RegoTests/meet/meet03_test.rego @@ -1,12 +1,18 @@ package meet + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestGroupNonCompliant +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.MEET.3.1v0.3 +# GWS.MEET.3.1 #-- + test_HostMan_Correct_V1 if { # Test meeting access when there's only one event - PolicyId := "GWS.MEET.3.1v0.3" + PolicyId := MeetId3_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -25,16 +31,12 @@ test_HostMan_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_HostMan_Correct_V2 if { # Test meeting access when there's multiple events and the most most recent is correct - PolicyId := "GWS.MEET.3.1v0.3" + PolicyId := MeetId3_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -63,16 +65,12 @@ test_HostMan_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_HostMan_Correct_V3 if { # Test meeting access when there's multiple events and the most most recent is correct - PolicyId := "GWS.MEET.3.1v0.3" + PolicyId := MeetId3_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -101,16 +99,12 @@ test_HostMan_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Access_Correct_V4 if { # Test history setting when set to inherit from parent - PolicyId := "GWS.MEET.3.1v0.3" + PolicyId := MeetId3_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -149,16 +143,12 @@ test_Access_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_HostMan_Incorrect_V1 if { # Test meeting access when there are no relevant events - PolicyId := "GWS.MEET.3.1v0.3" + PolicyId := MeetId3_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -177,20 +167,12 @@ test_HostMan_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_HostMan_Incorrect_V2 if { # Test meeting access when there's only one event and it's wrong - PolicyId := "GWS.MEET.3.1v0.3" + PolicyId := MeetId3_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -209,17 +191,14 @@ test_HostMan_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Host management when video calls start is set to off
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_HostMan_Incorrect_V3 if { # Test meeting access when there are multiple events and the most recent is wrong - PolicyId := "GWS.MEET.3.1v0.3" + PolicyId := MeetId3_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -248,17 +227,14 @@ test_HostMan_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Host management when video calls start is set to off
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage3_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_HostMan_Incorrect_V4 if { # Test allow user to change history setting when there are multiple OU and a secondary OU is wrong - PolicyId := "GWS.MEET.3.1v0.3" + PolicyId := MeetId3_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -287,18 +263,15 @@ test_HostMan_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Secondary OU: ", - "Host management when video calls start is set to off
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage3_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- test_HostMan_Incorrect_V5 if { # Test allow user to change history setting when the primary OU is missing but a different one is present - PolicyId := "GWS.MEET.3.1v0.3" + PolicyId := MeetId3_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -317,21 +290,13 @@ test_HostMan_Incorrect_V5 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } #-- test_HostMan_Incorrect_V6 if { # Test group wrong - PolicyId := "GWS.MEET.3.1v0.3" + PolicyId := MeetId3_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -366,13 +331,7 @@ test_HostMan_Incorrect_V6 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following groups are non-compliant:
    ", - "
  • group@example.com: Host management when video calls start is set to off
  • ", - "
" - ]) + failedGroup := [{"Name": "group@example.com", + "Value": NonComplianceMessage3_1("disabled")}] + FailTestGroupNonCompliant(PolicyId, Output, failedGroup) } diff --git a/Testing/RegoTests/meet/meet04_test.rego b/scubagoggles/Testing/RegoTests/meet/meet04_test.rego similarity index 74% rename from Testing/RegoTests/meet/meet04_test.rego rename to scubagoggles/Testing/RegoTests/meet/meet04_test.rego index 12367673..e73a29c8 100644 --- a/Testing/RegoTests/meet/meet04_test.rego +++ b/scubagoggles/Testing/RegoTests/meet/meet04_test.rego @@ -1,12 +1,18 @@ package meet + import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestGroupNonCompliant +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult # -# GWS.MEET.4.1v0.3 +# GWS.MEET.4.1 #-- -test_HostMan_Correct_V1 if { + +test_ExternWarn_Correct_V1 if { # Test meeting access when there's only one event - PolicyId := "GWS.MEET.4.1v0.3" + PolicyId := MeetId4_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -29,16 +35,12 @@ test_HostMan_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } -test_HostMan_Correct_V2 if { +test_ExternWarn_Correct_V2 if { # Test meeting access when there's multiple events and the most most recent is correct - PolicyId := "GWS.MEET.4.1v0.3" + PolicyId := MeetId4_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -75,16 +77,12 @@ test_HostMan_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } -test_HostMan_Correct_V3 if { +test_ExternWarn_Correct_V3 if { # Test meeting access when there's multiple events and the most most recent is correct - PolicyId := "GWS.MEET.4.1v0.3" + PolicyId := MeetId4_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -121,16 +119,12 @@ test_HostMan_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } -test_HostMan_Correct_V4 if { +test_ExternWarn_Correct_V4 if { # Test history setting when set to inherit from parent - PolicyId := "GWS.MEET.4.1v0.3" + PolicyId := MeetId4_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -181,16 +175,12 @@ test_HostMan_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } -test_HostMan_Incorrect_V1 if { +test_ExternWarn_Incorrect_V1 if { # Test meeting access when there are no relevant events - PolicyId := "GWS.MEET.4.1v0.3" + PolicyId := MeetId4_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -209,20 +199,12 @@ test_HostMan_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", true) } -test_HostMan_Incorrect_V2 if { +test_ExternWarn_Incorrect_V2 if { # Test meeting access when there's only one event and it's wrong - PolicyId := "GWS.MEET.4.1v0.3" + PolicyId := MeetId4_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -245,17 +227,14 @@ test_HostMan_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Warning label for external or unidentified meeting participants is set to no warning label
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -test_HostMan_Incorrect_V3 if { +test_ExternWarn_Incorrect_V3 if { # Test meeting access when there are multiple events and the most recent is wrong - PolicyId := "GWS.MEET.4.1v0.3" + PolicyId := MeetId4_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -292,17 +271,14 @@ test_HostMan_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Top-Level OU: ", - "Warning label for external or unidentified meeting participants is set to no warning label
"]) + failedOU := [{"Name": "Test Top-Level OU", + "Value": NonComplianceMessage4_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } -test_HostMan_Incorrect_V4 if { +test_ExternWarn_Incorrect_V4 if { # Test allow user to change history setting when there are multiple OU and a secondary OU is wrong - PolicyId := "GWS.MEET.4.1v0.3" + PolicyId := MeetId4_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -339,18 +315,15 @@ test_HostMan_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Secondary OU: ", - "Warning label for external or unidentified meeting participants is set to no warning label
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage4_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- -test_HostMan_Incorrect_V5 if { +test_ExternWarn_Incorrect_V5 if { # Test allow user to change history setting when the primary OU is missing but a different one is present - PolicyId := "GWS.MEET.4.1v0.3" + PolicyId := MeetId4_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -373,18 +346,15 @@ test_HostMan_Incorrect_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", ["The following OUs are non-compliant:
  • Test Secondary OU: ", - "Warning label for external or unidentified meeting participants is set to no warning label
"]) + failedOU := [{"Name": "Test Secondary OU", + "Value": NonComplianceMessage4_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } #-- -test_HostMan_Incorrect_V6 if { +test_ExternWarn_Incorrect_V6 if { # Test group wrong - PolicyId := "GWS.MEET.4.1v0.3" + PolicyId := MeetId4_1 Output := tests with input as { "meet_logs": {"items": [ { @@ -421,14 +391,7 @@ test_HostMan_Incorrect_V6 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following groups are non-compliant:
    ", - "
  • group@example.com: Warning label for external or unidentified ", - "meeting participants is set to no warning label
  • ", - "
" - ]) + failedGroup := [{"Name": "group@example.com", + "Value": NonComplianceMessage4_1("disabled")}] + FailTestGroupNonCompliant(PolicyId, Output, failedGroup) } diff --git a/Testing/RegoTests/meet/meet05_test.rego b/scubagoggles/Testing/RegoTests/meet/meet05_test.rego similarity index 94% rename from Testing/RegoTests/meet/meet05_test.rego rename to scubagoggles/Testing/RegoTests/meet/meet05_test.rego index 58ccfda5..876cd496 100644 --- a/Testing/RegoTests/meet/meet05_test.rego +++ b/scubagoggles/Testing/RegoTests/meet/meet05_test.rego @@ -1,288 +1,288 @@ -package meet -import future.keywords - -# -# GWS.MEET.5.1v0.3 -#-- -test_Incoming_Correct_V1 if { - # Test restricted to contacts - PolicyId := "GWS.MEET.5.1v0.3" - Output := tests with input as { - "meet_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - {"name": "NEW_VALUE", "value": "CONTACTS_AND_SAME_DOMAIN"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." -} - -test_Incoming_Correct_V2 if { - # Test disabled - PolicyId := "GWS.MEET.5.1v0.3" - Output := tests with input as { - "meet_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - {"name": "NEW_VALUE", "value": "NO_ONE"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." -} - -test_Incoming_Correct_V3 if { - # Test inheritance - PolicyId := "GWS.MEET.5.1v0.3" - Output := tests with input as { - "meet_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - {"name": "NEW_VALUE", "value": "NO_ONE"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - }, - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - {"name": "NEW_VALUE", "value": "NO_ONE"}, - {"name": "ORG_UNIT_NAME", "value": "Test Second-Level OU"}, - ] - }] - }, - { - "id": {"time": "2023-12-20T00:02:28.672Z"}, - "events": [{ - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - {"name": "SETTING_NAME", "value": "Incoming call restrictions Allowed caller type"}, - {"name": "ORG_UNIT_NAME", "value": "Test Second-Level OU"}, - ] - }] - }, - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." -} - -test_Incoming_Incorrect_V1 if { - # Test top-level OU wrong - PolicyId := "GWS.MEET.5.1v0.3" - Output := tests with input as { - "meet_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - {"name": "NEW_VALUE", "value": "ALL"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Top-Level OU: Users can receive calls from anyone
  • ", - "
" - ]) -} - -test_Incoming_Incorrect_V2 if { - # Test child OU wrong - PolicyId := "GWS.MEET.5.1v0.3" - Output := tests with input as { - "meet_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - {"name": "NEW_VALUE", "value": "NO_ONE"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - }, - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - {"name": "NEW_VALUE", "value": "ALL"}, - {"name": "ORG_UNIT_NAME", "value": "Test Second-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following OUs are non-compliant:
    ", - "
  • Test Second-Level OU: Users can receive calls from anyone
  • ", - "
" - ]) -} - -test_Incoming_Incorrect_V3 if { - # Test group wrong - PolicyId := "GWS.MEET.5.1v0.3" - Output := tests with input as { - "meet_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - {"name": "NEW_VALUE", "value": "NO_ONE"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - }, - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - {"name": "NEW_VALUE", "value": "ALL"}, - {"name": "GROUP_EMAIL", "value": "group@example.com"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "Test Top-Level OU" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "The following groups are non-compliant:
    ", - "
  • group@example.com: Users can receive calls from anyone
  • ", - "
" - ]) -} - -test_Incoming_Incorrect_V4 if { - # Test no events - PolicyId := "GWS.MEET.5.1v0.3" - Output := tests with input as { - "meet_logs": {"items": [ - { - "id": {"time": "2022-12-20T00:02:28.672Z"}, - "events": [{ - "parameters": [ - { - "name": "SETTING_NAME", - "value": "something else" - }, - {"name": "NEW_VALUE", "value": "ALL"}, - {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, - ] - }] - } - ]}, - "tenant_info": { - "topLevelOU": "" - } - } - - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting is compliant; ", - "manual check recommended." - ]) -} -#-- \ No newline at end of file +package meet +import future.keywords + +# +# GWS.MEET.5.1 +#-- +test_Incoming_Correct_V1 if { + # Test restricted to contacts + PolicyId := MeetId5_1 + Output := tests with input as { + "meet_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + {"name": "NEW_VALUE", "value": "CONTACTS_AND_SAME_DOMAIN"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." +} + +test_Incoming_Correct_V2 if { + # Test disabled + PolicyId := MeetId5_1 + Output := tests with input as { + "meet_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + {"name": "NEW_VALUE", "value": "NO_ONE"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." +} + +test_Incoming_Correct_V3 if { + # Test inheritance + PolicyId := MeetId5_1 + Output := tests with input as { + "meet_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + {"name": "NEW_VALUE", "value": "NO_ONE"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + }, + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + {"name": "NEW_VALUE", "value": "NO_ONE"}, + {"name": "ORG_UNIT_NAME", "value": "Test Second-Level OU"}, + ] + }] + }, + { + "id": {"time": "2023-12-20T00:02:28.672Z"}, + "events": [{ + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + {"name": "SETTING_NAME", "value": "Incoming call restrictions Allowed caller type"}, + {"name": "ORG_UNIT_NAME", "value": "Test Second-Level OU"}, + ] + }] + }, + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." +} + +test_Incoming_Incorrect_V1 if { + # Test top-level OU wrong + PolicyId := MeetId5_1 + Output := tests with input as { + "meet_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + {"name": "NEW_VALUE", "value": "ALL"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + not RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == concat("", [ + "The following OUs are non-compliant:
    ", + "
  • Test Top-Level OU: Users can receive calls from anyone
  • ", + "
" + ]) +} + +test_Incoming_Incorrect_V2 if { + # Test child OU wrong + PolicyId := MeetId5_1 + Output := tests with input as { + "meet_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + {"name": "NEW_VALUE", "value": "NO_ONE"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + }, + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + {"name": "NEW_VALUE", "value": "ALL"}, + {"name": "ORG_UNIT_NAME", "value": "Test Second-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + not RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == concat("", [ + "The following OUs are non-compliant:
    ", + "
  • Test Second-Level OU: Users can receive calls from anyone
  • ", + "
" + ]) +} + +test_Incoming_Incorrect_V3 if { + # Test group wrong + PolicyId := MeetId5_1 + Output := tests with input as { + "meet_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + {"name": "NEW_VALUE", "value": "NO_ONE"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + }, + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + {"name": "NEW_VALUE", "value": "ALL"}, + {"name": "GROUP_EMAIL", "value": "group@example.com"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "Test Top-Level OU" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + not RuleOutput[0].RequirementMet + not RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == concat("", [ + "The following groups are non-compliant:
    ", + "
  • group@example.com: Users can receive calls from anyone
  • ", + "
" + ]) +} + +test_Incoming_Incorrect_V4 if { + # Test no events + PolicyId := MeetId5_1 + Output := tests with input as { + "meet_logs": {"items": [ + { + "id": {"time": "2022-12-20T00:02:28.672Z"}, + "events": [{ + "parameters": [ + { + "name": "SETTING_NAME", + "value": "something else" + }, + {"name": "NEW_VALUE", "value": "ALL"}, + {"name": "ORG_UNIT_NAME", "value": "Test Top-Level OU"}, + ] + }] + } + ]}, + "tenant_info": { + "topLevelOU": "" + } + } + + RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RuleOutput) == 1 + RuleOutput[0].RequirementMet + RuleOutput[0].NoSuchEvent + RuleOutput[0].ReportDetails == concat("", [ + "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", + "While we are unable to determine the state from the logs, the default setting is compliant; ", + "manual check recommended." + ]) +} +#-- diff --git a/scubagoggles/Testing/RegoTests/meet/meet_api01_test.rego b/scubagoggles/Testing/RegoTests/meet/meet_api01_test.rego new file mode 100644 index 00000000..a32a86e6 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/meet/meet_api01_test.rego @@ -0,0 +1,48 @@ +package meet + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodMeetApi01 := { + "policies": { + "topOU": { + "meet_safety_domain": {"usersAllowedToJoin": "SAME_ORGANIZATION_ONLY"}, + "meet_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "meet_safety_domain": {"usersAllowedToJoin": "LOGGED_IN"}, + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadMeetApi01 := { + "policies": { + "topOU": { + "meet_safety_domain": {"usersAllowedToJoin": "ALL"}, + "meet_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_MeetAPI_UserJoin_Correct_1 if { + PolicyId := MeetId1_1 + Output := tests with input as GoodMeetApi01 + + PassTestResult(PolicyId, Output) +} + +test_MeetAPI_UserJoin_Incorrect_1 if { + PolicyId := MeetId1_1 + Output := tests with input as BadMeetApi01 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1("ALL"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/meet/meet_api02_test.rego b/scubagoggles/Testing/RegoTests/meet/meet_api02_test.rego new file mode 100644 index 00000000..4a99f6e5 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/meet/meet_api02_test.rego @@ -0,0 +1,48 @@ +package meet + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodMeetApi02 := { + "policies": { + "topOU": { + "meet_safety_access": {"meetingsAllowedToJoin": "SAME_ORGANIZATION_ONLY"}, + "meet_service_status": {"serviceState": "ENABLED"} + }, + "nextOU": { + "meet_safety_access": {"meetingsAllowedToJoin": "ANY_WORKSPACE_ORGANIZATION"}, + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadMeetApi02 := { + "policies": { + "topOU": { + "meet_safety_access": {"meetingsAllowedToJoin": "ALL"}, + "meet_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_MeetAPI_MeetAccess_Correct_1 if { + PolicyId := MeetId2_1 + Output := tests with input as GoodMeetApi02 + + PassTestResult(PolicyId, Output) +} + +test_MeetAPI_MeetAccess_Incorrect_1 if { + PolicyId := MeetId2_1 + Output := tests with input as BadMeetApi02 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1("ALL"))}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/meet/meet_api03_test.rego b/scubagoggles/Testing/RegoTests/meet/meet_api03_test.rego new file mode 100644 index 00000000..0cc64404 --- /dev/null +++ b/scubagoggles/Testing/RegoTests/meet/meet_api03_test.rego @@ -0,0 +1,45 @@ +package meet + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodMeetApi03 := { + "policies": { + "topOU": { + "meet_safety_host_management": {"enableHostManagement": true}, + "meet_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadMeetApi03 := { + "policies": { + "topOU": { + "meet_safety_host_management": {"enableHostManagement": false}, + "meet_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_MeetAPI_HostMgt_Correct_1 if { + PolicyId := MeetId3_1 + Output := tests with input as GoodMeetApi03 + + PassTestResult(PolicyId, Output) +} + +test_MeetAPI_HostMgt_Incorrect_1 if { + PolicyId := MeetId3_1 + Output := tests with input as BadMeetApi03 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage3_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/scubagoggles/Testing/RegoTests/meet/meet_api04_test.rego b/scubagoggles/Testing/RegoTests/meet/meet_api04_test.rego new file mode 100644 index 00000000..6e4de8ab --- /dev/null +++ b/scubagoggles/Testing/RegoTests/meet/meet_api04_test.rego @@ -0,0 +1,45 @@ +package meet + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +GoodMeetApi04 := { + "policies": { + "topOU": { + "meet_safety_external_participants": {"enableExternalLabel": true}, + "meet_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +BadMeetApi04 := { + "policies": { + "topOU": { + "meet_safety_external_participants": {"enableExternalLabel": false}, + "meet_service_status": {"serviceState": "ENABLED"} + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } +} + +test_MeetAPI_ExtWarn_Correct_1 if { + PolicyId := MeetId4_1 + Output := tests with input as GoodMeetApi04 + + PassTestResult(PolicyId, Output) +} + +test_MeetAPI_ExtWarn_Incorrect_1 if { + PolicyId := MeetId4_1 + Output := tests with input as BadMeetApi04 + + failedOU := [{"Name": "topOU", + "Value": NonComplianceMessage4_1("disabled")}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/Testing/RegoTests/rules/rules01_test.rego b/scubagoggles/Testing/RegoTests/rules/rules01_test.rego similarity index 97% rename from Testing/RegoTests/rules/rules01_test.rego rename to scubagoggles/Testing/RegoTests/rules/rules01_test.rego index ddb2a33b..5ad56842 100644 --- a/Testing/RegoTests/rules/rules01_test.rego +++ b/scubagoggles/Testing/RegoTests/rules/rules01_test.rego @@ -3,7 +3,7 @@ import future.keywords test_Alert_Correct_V1 if { # 1 event - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Requirement := "Government-backed attacks" Output := tests with input as { "rules_logs": {"items": [ @@ -43,7 +43,7 @@ test_Alert_Correct_V1 if { test_Alert_Correct_V2 if { # Just a status unchanged event, but rule is default-on - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Requirement := "User-reported phishing" Output := tests with input as { "rules_logs": {"items": [ @@ -86,7 +86,7 @@ test_Alert_Correct_V2 if { test_Alert_Correct_V3 if { # Multiple events, but one is a "Status unchanged." event - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Requirement := "Government-backed attacks" Output := tests with input as { "rules_logs": {"items": [ @@ -147,7 +147,7 @@ test_Alert_Correct_V3 if { test_Alert_Correct_V4 if { # Multiple events - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Requirement := "Government-backed attacks" Output := tests with input as { "rules_logs": {"items": [ @@ -208,7 +208,7 @@ test_Alert_Correct_V4 if { test_Alert_Correct_V5 if { # no events, but default on - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Requirement := "User-reported phishing" Output := tests with input as { "rules_logs": {"items": [ @@ -228,7 +228,7 @@ test_Alert_Correct_V5 if { test_Alert_Incorrect_V1 if { # 1 event - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Requirement := "Government-backed attacks" Output := tests with input as { "rules_logs": {"items": [ @@ -268,7 +268,7 @@ test_Alert_Incorrect_V1 if { test_Alert_Incorrect_V2 if { # 1 status unchanged event, default is off - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Requirement := "Government-backed attacks" Output := tests with input as { "rules_logs": {"items": [ @@ -308,7 +308,7 @@ test_Alert_Incorrect_V2 if { test_Alert_Incorrect_V3 if { # No events, default is off - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Requirement := "Government-backed attacks" Output := tests with input as { "rules_logs": {"items": [ @@ -328,7 +328,7 @@ test_Alert_Incorrect_V3 if { test_Email_Correct_V1 if { # 1 event - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Requirement := "TLS failure" Output := tests with input as { "rules_logs": {"items": [ @@ -368,7 +368,7 @@ test_Email_Correct_V1 if { test_Email_Correct_V2 if { # Multiple events, but one is a "Status unchanged." event - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Requirement := "TLS failure" Output := tests with input as { "rules_logs": {"items": [ @@ -429,7 +429,7 @@ test_Email_Correct_V2 if { test_Email_Correct_V3 if { # Multiple events - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Requirement := "TLS failure" Output := tests with input as { "rules_logs": {"items": [ @@ -490,7 +490,7 @@ test_Email_Correct_V3 if { test_Email_Correct_V4 if { # 1 event, receiver changed - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Requirement := "TLS failure" Output := tests with input as { "rules_logs": {"items": [ @@ -533,7 +533,7 @@ test_Email_Correct_V4 if { test_Email_Incorrect_V1 if { # 1 event - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Requirement := "TLS failure" Output := tests with input as { "rules_logs": {"items": [ @@ -573,7 +573,7 @@ test_Email_Incorrect_V1 if { test_Email_Incorrect_V2 if { # 1 status unchanged event, default is off - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Requirement := "TLS failure" Output := tests with input as { "rules_logs": {"items": [ @@ -613,7 +613,7 @@ test_Email_Incorrect_V2 if { test_Email_Incorrect_V3 if { # No events, default is off - PolicyId := "GWS.COMMONCONTROLS.13.1v0.3" + PolicyId := CommonControlsId13_1 Requirement := "TLS failure" Output := tests with input as { "rules_logs": {"items": [ @@ -630,4 +630,3 @@ test_Email_Incorrect_V3 if { RuleOutput[0].NoSuchEvent RuleOutput[0].ReportDetails == "Messages requiring Transport Layer Security (TLS) can't be delivered." } - diff --git a/Testing/RegoTests/sites/sites01_test.rego b/scubagoggles/Testing/RegoTests/sites/sites01_test.rego similarity index 78% rename from Testing/RegoTests/sites/sites01_test.rego rename to scubagoggles/Testing/RegoTests/sites/sites01_test.rego index fd4a6cd1..a67e3d36 100644 --- a/Testing/RegoTests/sites/sites01_test.rego +++ b/scubagoggles/Testing/RegoTests/sites/sites01_test.rego @@ -1,13 +1,14 @@ package sites -import future.keywords -# -# Baseline GWS.SITES.1.1v0.3 -#-- +import future.keywords +import data.utils.FailTestNoEvent +import data.utils.FailTestGroupNonCompliant +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult test_Sites_Disabled_Correct_V1 if { # Test ensure Sites is disabled - PolicyId := "GWS.SITES.1.1v0.3" + PolicyId := SitesId1_1 Output := tests with input as { "sites_logs": {"items": [ { @@ -27,16 +28,12 @@ test_Sites_Disabled_Correct_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Sites_Disabled_Correct_V2 if { # Test ensure sites is disabled when there's multiple events and the most recent is correct - PolicyId := "GWS.SITES.1.1v0.3" + PolicyId := SitesId1_1 Output := tests with input as { "sites_logs": {"items": [ { @@ -67,16 +64,12 @@ test_Sites_Disabled_Correct_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Sites_Disabled_Correct_V3 if { # Test ensure sites is disabled when there are multiple OU's - PolicyId := "GWS.SITES.1.1v0.3" + PolicyId := SitesId1_1 Output := tests with input as { "sites_logs": {"items": [ { @@ -107,16 +100,12 @@ test_Sites_Disabled_Correct_V3 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Sites_Disabled_Correct_V4 if { # Test sites is disabled when there are multiple OU's and an older event is non-complaint - PolicyId := "GWS.SITES.1.1v0.3" + PolicyId := SitesId1_1 Output := tests with input as { "sites_logs": {"items": [ { @@ -158,16 +147,12 @@ test_Sites_Disabled_Correct_V4 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Sites_Disabled_Correct_V5 if { # Test Sites inheritance - PolicyId := "GWS.SITES.1.1v0.3" + PolicyId := SitesId1_1 Output := tests with input as { "sites_logs": {"items": [ { @@ -209,16 +194,12 @@ test_Sites_Disabled_Correct_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == "Requirement met in all OUs and groups." + PassTestResult(PolicyId, Output) } test_Sites_Disabled_Incorrect_V1 if { # Test sites is disabled when there is an event for a different service - PolicyId := "GWS.SITES.1.1v0.3" + PolicyId := SitesId1_1 Output := tests with input as { "sites_logs": {"items": [ { @@ -249,17 +230,14 @@ test_Sites_Disabled_Incorrect_V1 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == - "The following OUs are non-compliant:
  • Test Top-Level OU: Service status for Sites is ON.
" + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Service status for Sites is ON."}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Sites_Disabled_Incorrect_V2 if { # Test Sites is disabled when there's only one event and it's wrong - PolicyId := "GWS.SITES.1.1v0.3" + PolicyId := SitesId1_1 Output := tests with input as { "sites_logs": {"items": [ { @@ -279,17 +257,14 @@ test_Sites_Disabled_Incorrect_V2 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == - "The following OUs are non-compliant:
  • Test Top-Level OU: Service status for Sites is ON.
" + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Service status for Sites is ON."}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Sites_Disabled_Incorrect_V3 if { # Test sites is disabled when there are multiple events and the most recent is wrong - PolicyId := "GWS.SITES.1.1v0.3" + PolicyId := SitesId1_1 Output := tests with input as { "sites_logs": {"items": [ { @@ -320,17 +295,14 @@ test_Sites_Disabled_Incorrect_V3 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == - "The following OUs are non-compliant:
  • Test Top-Level OU: Service status for Sites is ON.
" + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Service status for Sites is ON."}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Sites_Disabled_Incorrect_V4 if { # Test sites is disabled when the Top-level OU is compliant but a secondary OU is non-compliant - PolicyId := "GWS.SITES.1.1v0.3" + PolicyId := SitesId1_1 Output := tests with input as { "sites_logs": {"items": [ { @@ -361,17 +333,14 @@ test_Sites_Disabled_Incorrect_V4 if { }, } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == - "The following OUs are non-compliant:
  • Secondary OU: Service status for Sites is ON.
" + failedOU := [{"Name": "Secondary OU", + "Value": "Service status for Sites is ON."}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Sites_Disabled_Incorrect_V5 if { # Test sites is disabled when there's only one event and it's wrong - PolicyId := "GWS.SITES.1.1v0.3" + PolicyId := SitesId1_1 Output := tests with input as { "sites_logs": {"items": [ { @@ -391,17 +360,14 @@ test_Sites_Disabled_Incorrect_V5 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == - "The following OUs are non-compliant:
  • Test Top-Level OU: Service status for Sites is ON.
" + failedOU := [{"Name": "Test Top-Level OU", + "Value": "Service status for Sites is ON."}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) } test_Sites_Disabled_Incorrect_V6 if { # Test sites is disabled when there are no relevant events - PolicyId := "GWS.SITES.1.1v0.3" + PolicyId := SitesId1_1 Output := tests with input as { "sites_logs": {"items": [ { @@ -421,20 +387,12 @@ test_Sites_Disabled_Incorrect_V6 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == concat("", [ - "No relevant event in the current logs for the top-level OU, Test Top-Level OU. ", - "While we are unable to determine the state from the logs, the default setting ", - "is non-compliant; manual check recommended." - ]) + FailTestNoEvent(PolicyId, Output, "Test Top-Level OU", false) } test_Sites_Disabled_Incorrect_V7 if { # Test Sites enabled in a group - PolicyId := "GWS.SITES.1.1v0.3" + PolicyId := SitesId1_1 Output := tests with input as { "sites_logs": {"items": [ { @@ -465,17 +423,14 @@ test_Sites_Disabled_Incorrect_V7 if { } } - RuleOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] - count(RuleOutput) == 1 - not RuleOutput[0].RequirementMet - not RuleOutput[0].NoSuchEvent - RuleOutput[0].ReportDetails == - "The following groups are non-compliant:
  • group@example.com: Service status for Sites is ON.
" + failedGroup := [{"Name": "group@example.com", + "Value": "Service status for Sites is ON."}] + FailTestGroupNonCompliant(PolicyId, Output, failedGroup) } test_Sites_Disabled_Incorrect_V8 if { # Test Sites enabled in a group and an ou - PolicyId := "GWS.SITES.1.1v0.3" + PolicyId := SitesId1_1 Output := tests with input as { "sites_logs": {"items": [ { @@ -516,4 +471,4 @@ test_Sites_Disabled_Incorrect_V8 if { "The following groups are non-compliant:
  • group@example.com: Service status for Sites is ON.
" ]) } -#-- \ No newline at end of file +#-- diff --git a/scubagoggles/Testing/RegoTests/sites/sites_api01_test.rego b/scubagoggles/Testing/RegoTests/sites/sites_api01_test.rego new file mode 100644 index 00000000..7c5c9f5c --- /dev/null +++ b/scubagoggles/Testing/RegoTests/sites/sites_api01_test.rego @@ -0,0 +1,84 @@ +package sites + +import future.keywords +import data.utils.FailTestOUNonCompliant +import data.utils.PassTestResult + +test_SitesAPI_Comply_1 if { + PolicyId := SitesId1_1 + Output := tests with input as { + "policies": { + "topOU": { + "sites_service_status": { + "serviceState": "DISABLED" + }, + }, + "nextOU": { + "sites_service_status": { + # Case doesn't matter + "serviceState": "DisaBled" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } + } + + PassTestResult(PolicyId, Output) +} + +test_SitesAPI_NonComply_1 if { + PolicyId := SitesId1_1 + Output := tests with input as { + "policies": { + "topOU": { + "sites_service_status": { + "serviceState": "ENABLED" + } + }, + "nextOU": { + "sites_service_status": { + # Fail even if some unexpected value (not en/disabled) + "serviceState": "invalid" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } + } + + failedOU := [{"Name": "nextOU", + "Value": "Service status for Sites is ON."}, + {"Name": "topOU", + "Value": "Service status for Sites is ON."}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} + +test_SitesAPI_NonComply_2 if { + PolicyId := SitesId1_1 + Output := tests with input as { + "policies": { + "topOU": { + "sites_service_status": { + "serviceState": "ENABLED" + } + }, + "topOU (group \"Even More Secret Group\")": { + "sites_service_status": { + "serviceState": "ENABLED" + } + } + }, + "tenant_info": { + "topLevelOU": "topOU" + } + } + + failedOU := [{"Name": "topOU", + "Value": "Service status for Sites is ON."}, + {"Name": "topOU (group \"Even More Secret Group\")", + "Value": "Service status for Sites is ON."}] + FailTestOUNonCompliant(PolicyId, Output, failedOU) +} diff --git a/Testing/run_unit_tests.py b/scubagoggles/Testing/run_unit_tests.py similarity index 69% rename from Testing/run_unit_tests.py rename to scubagoggles/Testing/run_unit_tests.py index 481f6417..a8c5a69e 100644 --- a/Testing/run_unit_tests.py +++ b/scubagoggles/Testing/run_unit_tests.py @@ -5,8 +5,18 @@ """ import subprocess import argparse + +from pathlib import Path from sys import platform +# pylint: skip-file + +# The location of the RegoTests directory is where this script is located. +# The location of the Rego code is one level up. + +test_dir = Path(__file__).parent +rego_dir = test_dir.parent / 'rego' + gws_baselines = [ "gmail", "calendar", @@ -38,16 +48,15 @@ default=[], help="Space-separated list of control group numbers to test within a specific baseline." "Can only be used when a single baseline is specified. By default all are run.") -parser.add_argument('-o', '--opapath', type=str, default='../', metavar='', +parser.add_argument('-o', '--opapath', type=str, default='../..', metavar='', help='The relative path to the directory containing the OPA executable. ' + - 'Defaults to "../" the current executing directory.') + 'Defaults to "../.." the current executing directory.') parser.add_argument('-v', action='store_true', help='Verbose flag, passed to opa, increases output.') args = parser.parse_args() - if len(args.baselines) > 1 and len(args.controls) > 0: print('WARNING: "--controls" specified, ' 'but multiple products are being tested. Ignoring "--controls" option.') @@ -63,24 +72,30 @@ OPA_EXE = "" command = [] if platform == 'win32': - OPA_EXE = f"{opa_path}opa_windows_amd64.exe" + OPA_EXE = f'{opa_path}/opa_windows_amd64.exe' elif platform == 'darwin': - OPA_EXE = f"sudo {opa_path}opa_darwin_amd64" + OPA_EXE = f'{opa_path}/opa_darwin_amd64' elif platform in ('linux', 'linux2'): - OPA_EXE = f"sudo {opa_path}opa_linux_amd64_static" -else: - OPA_EXE = f"sudo {opa_path}opa" + OPA_EXE = f'{opa_path}opa_linux_amd64_static' + +if not OPA_EXE or not Path(OPA_EXE).exists(): + OPA_EXE = f'{opa_path}/opa' + +if not Path(OPA_EXE).exists(): + raise FileNotFoundError(f'? {OPA_EXE}: OPA executable not found') + for b in args.baselines: b = b.lower() if len(args.controls) > 0: for c in args.controls: print(f"\n==== Testing {b} control {c} ====") c = c.zfill(2) - command = f"{OPA_EXE} test ../Rego/ ./RegoTests/{b}/{b}{c}_test.rego {V_FLAG}" + command = (f'{OPA_EXE} test {rego_dir} ' + f'{test_dir}/RegoTests/{b}/{b}{c}_test.rego {V_FLAG}') print(command) subprocess.run(command.split(), check=False) else: print(f"\n==== Testing {b} ====") - command = f"{OPA_EXE} test ../Rego/ ./RegoTests/{b} {V_FLAG}" + command = f'{OPA_EXE} test {rego_dir} {test_dir}/RegoTests/{b} {V_FLAG}' print(command) subprocess.run(command.split(), check=False) diff --git a/scubagoggles/__init__.py b/scubagoggles/__init__.py index e69de29b..9d6f6c0c 100644 --- a/scubagoggles/__init__.py +++ b/scubagoggles/__init__.py @@ -0,0 +1,7 @@ +"""ScubaGoggles package module + +This file contains the OFFICIAL source of the ScubaGoggles version number. +All other references to the version number are derived from this value. +""" + +__version__ = '0.3.0' diff --git a/scubagoggles/auth.py b/scubagoggles/auth.py index c23a9dea..698f049c 100644 --- a/scubagoggles/auth.py +++ b/scubagoggles/auth.py @@ -4,54 +4,167 @@ This module uses a local credential.json file to authenticate to a GWS org """ -from __future__ import print_function -import os.path +import json from pathlib import Path + +from google.auth.credentials import TokenState from google.auth.transport.requests import Request from google.oauth2.credentials import Credentials from google.oauth2.service_account import Credentials as SvcCredentials from google_auth_oauthlib.flow import InstalledAppFlow -# If modifying these scopes, delete the file token.json. -SCOPES = ['https://www.googleapis.com/auth/admin.reports.audit.readonly', - "https://www.googleapis.com/auth/admin.directory.domain.readonly", - "https://www.googleapis.com/auth/admin.directory.orgunit.readonly", - "https://www.googleapis.com/auth/admin.directory.user.readonly", - "https://www.googleapis.com/auth/admin.directory.group.readonly", - "https://www.googleapis.com/auth/apps.groups.settings"] +# The class is worth it just for the encapsulation. It allows the potential +# of credential refresh multiple times, which may be beneficial during a +# prolonged debugging session. +# pylint: disable=too-few-public-methods -def gws_auth(cred_path:str, subject_email: str = None): - """ - Generates an Oauth token for accessing Google's APIs +class GwsAuth: - :param cred_path: directory containing the credentials file - :param subject_email: if set, assumes credentials are for service account and uses - this email as the subject + """Generates an Oauth token for accessing Google's APIs """ - cred_dir = Path(cred_path).parent - creds = None - - if subject_email is not None: - creds = SvcCredentials.from_service_account_file(cred_path, scopes=SCOPES, - subject=subject_email) - if not creds.valid: - creds.refresh(Request()) - return creds - - oauth_token = (cred_dir / 'token.json').resolve() - if os.path.exists(oauth_token): - creds = Credentials.from_authorized_user_file(oauth_token, SCOPES) - # If there are no (valid) credentials available, let the user log in. - if not creds or not creds.valid: - if creds and creds.expired and creds.refresh_token: - creds.refresh(Request()) - else: - flow = InstalledAppFlow.from_client_secrets_file( - cred_path, SCOPES) - # the prompt parameter forces the user to consent to the token - creds = flow.run_local_server(port=8080, prompt='consent') - # Save the credentials for the next run - with open(oauth_token, mode='w', encoding='UTF-8') as token: - token.write(creds.to_json()) - return creds + + _base_auth_url = 'https://www.googleapis.com/auth' + + _scopes = (f'{_base_auth_url}/admin.reports.audit.readonly', + f'{_base_auth_url}/admin.directory.domain.readonly', + f'{_base_auth_url}/admin.directory.orgunit.readonly', + f'{_base_auth_url}/admin.directory.user.readonly', + f'{_base_auth_url}/admin.directory.group.readonly', + f'{_base_auth_url}/apps.groups.settings', + f'{_base_auth_url}/cloud-identity.policies.readonly') + + def __init__(self, credentials_path: Path, svc_account_email: str = None): + + """GwsAuth class initialization. + + The Google credentials are established when the class instance is + created. This may involve the user interacting with the web browser + to authenticate for access to Google's API services. + + :param credentials_path: path to the Google JSON-format + credentials file. + :param svc_account_email: (optional) email address for the service + account. + """ + + credentials_path = Path(credentials_path) + + if not credentials_path.exists(): + raise FileNotFoundError(f'{credentials_path} - credentials file ' + 'not found') + + credentials_dir = credentials_path.parent + self._credentials_path = credentials_path + + self._svc_account_email = svc_account_email + if svc_account_email: + get_credentials = SvcCredentials.from_service_account_file + self._token = get_credentials(str(credentials_path), + scopes = self._scopes, + subject = svc_account_email) + return + + # The token file is written to the same location as the given + # credentials file. + self._token_path = credentials_dir / 'token.json' + self._load_token() + if self._token: + return + + # There is no existing token file, so the user will have to authenticate + # using a browser on the current system. There doesn't seem to be an + # alternative for users without access to a browser (there was a + # run_console() method that was removed in a prior release that may + # have worked when no browser was available). + credentials_file = str(self._credentials_path) + flow = InstalledAppFlow.from_client_secrets_file(credentials_file, + self._scopes) + + try: + self._token = flow.run_local_server(timeout_seconds = 300) + except AttributeError as ae: + raise RuntimeError('Google authorization timeout') from ae + + self._save_token() + + @property + def credentials(self) -> Credentials: + + """Returns the Google credentials, after a possible refresh if needed. + Token refresh doesn't apply to service accounts. + + :return: valid Google credentials + """ + + if not self._svc_account_email: + self._refresh_token() + + return self._token + + def _check_scopes(self): + + """Compares the list of scopes in the token file with those defined + in this class. If there is a mismatch, the token file is deleted. + It must be created if the scopes differ because operations that + require the token may fail. + """ + + if not self._token_path.exists(): + return + + with self._token_path.open() as in_stream: + token = json.load(in_stream) + + token_scopes = frozenset(token['scopes']) + valid_scopes = frozenset(self._scopes) + + # Delete the token file if its scopes don't match those defined in + # this class. The token file will be recreated in the constructor + # (with the user having to interact with the browser). + if token_scopes != valid_scopes: + self._token_path.unlink(missing_ok = True) + + def _load_token(self): + + """Loads and existing Google API token file, if it exists, and + refreshes the token if necessary. + + This method is called during class instance initialization. The + "_token" attribute is defined for the instance, and is None if + the token file doesn't exist. + """ + + self._token = None + + self._check_scopes() + + if not self._token_path.exists(): + return + + # The token file exists and its scopes match those defined in this + # class. Create credentials using the token file and scopes, and + # refresh the token if it has expired. + token_file = str(self._token_path) + self._token = Credentials.from_authorized_user_file(token_file, + self._scopes) + + self._refresh_token() + + def _refresh_token(self): + + """Refreshes the credentials token if needed and writes the + new credentials data to the token file. + """ + + if self._token.token_state != TokenState.FRESH: + self._token.refresh(Request()) + self._save_token() + + def _save_token(self): + + """Writes the Google credentials to the token JSON file. + """ + + with self._token_path.open(mode = 'w', encoding = 'utf-8') as out: + out.write(self._token.to_json()) diff --git a/scubagoggles/baselines/README.md b/scubagoggles/baselines/README.md new file mode 100644 index 00000000..00d63a4d --- /dev/null +++ b/scubagoggles/baselines/README.md @@ -0,0 +1,11 @@ +Individual baselines can be visited directly at the links below: + +- [Common Controls](commoncontrols.md) +- [Gmail](gmail.md) +- [Google Calendar](calendar.md) +- [Google Chat](chat.md) +- [Google Classroom](classroom.md) +- [Google Drive and Docs](drive.md) +- [Google Meet](meet.md) +- [Google Sites](sites.md) +- [Groups for Business](groups.md) diff --git a/baselines/calendar.md b/scubagoggles/baselines/calendar.md similarity index 100% rename from baselines/calendar.md rename to scubagoggles/baselines/calendar.md diff --git a/baselines/chat.md b/scubagoggles/baselines/chat.md similarity index 99% rename from baselines/chat.md rename to scubagoggles/baselines/chat.md index d05f6ff1..60f81729 100644 --- a/baselines/chat.md +++ b/scubagoggles/baselines/chat.md @@ -235,7 +235,7 @@ All reporting message categories SHOULD be selected. 2. Select **Menu** -> **Apps** -> **Google Workspace** -> **Google Chat**. 3. Click **Content Reporting**. 4. Ensure **Allow users to report content in Chat** is enabled. -5. Ensure all conversation type checkboxes are selected. +5. Ensure all conversation type checkboxes are selected. 6. Click **Save**. #### GWS.CHAT.5.2v0.3 Instructions diff --git a/baselines/classroom.md b/scubagoggles/baselines/classroom.md similarity index 99% rename from baselines/classroom.md rename to scubagoggles/baselines/classroom.md index 5483fe05..15776303 100644 --- a/baselines/classroom.md +++ b/scubagoggles/baselines/classroom.md @@ -36,7 +36,7 @@ The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "S This section covers who has the ability to join classes and what classes the users in your domain can join. -### Policy +### Policies #### GWS.CLASSROOM.1.1v0.3 Who can join classes in your domain SHALL be set to Users in your domain only. @@ -86,7 +86,7 @@ To configure the settings for Class Membership: This section covers policies related to the Google Classroom API. -### Policy +### Policies #### GWS.CLASSROOM.2.1v0.3 Users SHALL NOT be able to authorize apps to access their Google Classroom data. @@ -121,7 +121,7 @@ To configure the settings for Classroom API: This section covers policies related to importing rosters from Clever. -### Policy +### Policies #### GWS.CLASSROOM.3.1v0.3 Roster import with Clever SHOULD be turned off. @@ -154,7 +154,7 @@ To configure the settings for Roster Import: This section covers policies related to unenrolling a student from a class. -### Policy +### Policies #### GWS.CLASSROOM.4.1v0.3 Only teachers SHALL be allowed to unenroll students from classes. @@ -187,7 +187,7 @@ To configure the settings for Student Unenrollment: The first time users sign in to Classroom, they self-identify as either a student or teacher. Users who identify as teachers will be marked as a pending teacher until an administrator verifies them. Google Classroom allows administrators to restrict class creation to only verified teachers. -### Policy +### Policies #### GWS.CLASSROOM.5.1v0.3 Class creation SHALL be restricted to verified teachers only. diff --git a/baselines/commoncontrols.md b/scubagoggles/baselines/commoncontrols.md similarity index 99% rename from baselines/commoncontrols.md rename to scubagoggles/baselines/commoncontrols.md index 0ed35d74..d3cd1d92 100644 --- a/baselines/commoncontrols.md +++ b/scubagoggles/baselines/commoncontrols.md @@ -57,7 +57,7 @@ The following graphic illustrates the spectrum of MFA options and their relative Please note there is a distinction between Google 2 Step Verification (2SV) and MFA as a general term. While FIDO Security Key and Phone as a Security Key are acceptable forms of Phishing-Resistant MFA which rely on Google 2SV as the underlying mechanism, the other forms listed in the "strongest" column do not use Google 2SV but are still acceptable forms of Phishing-Resistant MFA. - + ### Policies @@ -1032,7 +1032,7 @@ Required system-defined alerting rules, as listed in the Policy group descriptio Configure GWS to send critical logs to the agency's centralized Security Information and Event Management (SIEM) so that they can be audited and queried. Configure GWS to send logs to a storage account and retain them for when incident response is needed. -### Policy +### Policies #### GWS.COMMONCONTROLS.14.1v0.3 The following critical logs SHALL be sent to the agency's centralized SIEM. @@ -1097,7 +1097,7 @@ Google Workspace administrators can choose to store data in a specific geographi At the time of writing, data region policies cannot be applied to data types not specifically listed in documentation linked in the resources section. Notably, this includes logs and cached content. -### Policy +### Policies #### GWS.COMMONCONTROLS.15.1v0.3 The data storage region SHALL be set to be the United States for all users in the agency's GWS environment. @@ -1174,7 +1174,7 @@ To configure Supplemental Data Storage per the policy: Google Workspace considers some of its services "core services," including Gmail, Calendar, and Drive. Services outside of this core offering are controlled within the "Additional Google services" portion of the admin console. This section outlines requirements relating to those services. -### Policy +### Policies #### GWS.COMMONCONTROLS.16.1v0.3 Service status for Google services that do not have an individual control SHOULD be set to OFF for everyone. @@ -1223,7 +1223,7 @@ User access to Early Access Apps SHOULD be disabled. 3. Click **Save**. #### GWS.COMMONCONTROLS.16.2v0.3 Instructions -1. In the list of all services, scroll to and click on the **Early Access Apps** service. +1. In the list of all services, scroll to and click on the **Early Access Apps** service. 2. Click on **Service status**. 3. Ensure **OFF for everyone** is checked. 4. Click **Save**. @@ -1231,7 +1231,7 @@ User access to Early Access Apps SHOULD be disabled. ## 17. Multi-Party Approval This section covers whether multiple super admins need to approve changes to specific admin console settings. -### Policy +### Policies #### GWS.COMMONCONTROLS.17.1v0.3 Require multi party approval for sensitive admin actions SHALL be enabled. @@ -1266,7 +1266,7 @@ DLP rules can use predefined content detectors to match PII (e.g., SSN), credent There are several commercial DLP solutions available that document support for Google Workspace. Google itself offers DLP services. Agencies may select any service that fits their needs and meets the baseline requirements outlined in this policy group. The DLP solution selected by an agency should offer services comparable to those offered by Google. -Though use of Google's DLP solution is not strictly required, guidance for configuring Google's DLP solution can be found in the instructions of this policy section. +Though use of Google's DLP solution is not strictly required, guidance for configuring Google's DLP solution can be found in the instructions of this policy section. ### Policies #### GWS.COMMONCONTROLS.18.1v0.3 @@ -1335,7 +1335,7 @@ Drive DLP and Chat DLP are available to Cloud Identity Premium users with a Goog #### GWS COMMONCONTROLS 18 Common Instructions 1. Sign in to the [Google Admin Console](https://admin.google.com). 2. Select **Menu -\> Security -\> Access and data control -\> Data protection**. -3. Under **Data protection rules and detectors** click **Manage Rules**. +3. Under **Data protection rules and detectors** click **Manage Rules**. 4. Click **Add rule** -\> **New rule**. #### GWS.COMMONCONTROLS.18.1v0.3 Instructions @@ -1345,7 +1345,7 @@ Drive DLP and Chat DLP are available to Cloud Identity Premium users with a Goog 4. In the **Conditions** section: 1. Click **Add Condition**. For **Content type to scan** select **All content**. For **What to scan for** select **Matches predefined data type**. For **Select data type** select **Global - Credit card number**. Select the remaining condition properties according to agency need. 2. Click **Add Condition**. For **Content type to scan** select **All content**. For **What to scan for** select **Matches predefined data type**. For **Select data type** select **United States - Individual Taxpayer Identification Number**. Select the remaining condition properties according to agency need. - 3. Click **Add Condition**. For **Content type to scan** select **All content**. For **What to scan for** select **Matches predefined data type**. For **Select data type** select **United States - Social Security Number***. Select the remaining condition properties according to agency need. + 3. Click **Add Condition**. For **Content type to scan** select **All content**. For **What to scan for** select **Matches predefined data type**. For **Select data type** select **United States - Social Security Number***. Select the remaining condition properties according to agency need. 4. Configure other appropriate content and condition definition(s) based upon the agency's individual requirements and click **Continue**. 5. In the **Actions** section, select **Block external sharing** (per [GWS.COMMONCONTROLS.18.4v0.3](#gwscommoncontrols184v03)). 6. In the **Alerting** section, choose a severity level, and optionally, check **Send to alert center to trigger notifications**. @@ -1353,12 +1353,12 @@ Drive DLP and Chat DLP are available to Cloud Identity Premium users with a Goog #### GWS.COMMONCONTROLS.18.2v0.3 Instructions 1. In the **Name** section, add the name and description of the rule. -2. In the **Scope** section, apply this rule to the entire domain and click **Continue**. +2. In the **Scope** section, apply this rule to the entire domain and click **Continue**. 3. In the **Apps** section, choose the trigger for **Google Chat, Message sent, File uploaded** then click **Continue**. 4. In the **Conditions** section: 1. Click **Add Condition**. For **Content type to scan** select **All content**. For **What to scan for** select **Matches predefined data type**. For **Select data type** select **Global - Credit card number**. Select the remaining condition properties according to agency need. - 2. Click **Add Condition**. For **Content type to scan** select **All content**. For **What to scan for** select **Matches predefined data type**. For **Select data type** select **United States - Individual Taxpayer Identification Number**. Select the remaining condition properties according to agency need. - 3. Click **Add Condition**. For **Content type to scan** select **All content**. For **What to scan for** select **Matches predefined data type**. For **Select data type** select **United States - Social Security Number***. Select the remaining condition properties according to agency need. + 2. Click **Add Condition**. For **Content type to scan** select **All content**. For **What to scan for** select **Matches predefined data type**. For **Select data type** select **United States - Individual Taxpayer Identification Number**. Select the remaining condition properties according to agency need. + 3. Click **Add Condition**. For **Content type to scan** select **All content**. For **What to scan for** select **Matches predefined data type**. For **Select data type** select **United States - Social Security Number***. Select the remaining condition properties according to agency need. 4. Configure other appropriate content and condition definition(s) based upon the agency's individual requirements and click **Continue**. 5. In the **Actions** section, select **Block**. Under **Select when this action should apply**, select **External Conversations**, **Spaces**, **Group chats**, and **1:1 chats** (See [GWS.COMMONCONTROLS.18.4v0.3](#gwscommoncontrols184v03)). 6. In the **Alerting** section, choose a severity level, and optionally, check **Send to alert center to trigger notifications**. @@ -1366,12 +1366,12 @@ Drive DLP and Chat DLP are available to Cloud Identity Premium users with a Goog #### GWS.COMMONCONTROLS.18.3v0.3 Instructions 1. In the **Name** section, add the name and description of the rule. -2. In the **Scope** section, apply this rule to the entire domain and click **Continue**. +2. In the **Scope** section, apply this rule to the entire domain and click **Continue**. 3. In the **Apps** section, choose the trigger for **Gmail, Message sent** then click **Continue**. 4. In the **Conditions** section: 1. Click **Add Condition**. For **Content type to scan** select **All content**. For **What to scan for** select **Matches predefined data type**. For **Select data type** select **Global - Credit card number**. Select the remaining condition properties according to agency need. - 2. Click **Add Condition**. For **Content type to scan** select **All content**. For **What to scan for** select **Matches predefined data type**. For **Select data type** select **United States - Individual Taxpayer Identification Number**. Select the remaining condition properties according to agency need. - 3. Click **Add Condition**. For **Content type to scan** select **All content**. For **What to scan for** select **Matches predefined data type**. For **Select data type** select **United States - Social Security Number***. Select the remaining condition properties according to agency need. + 2. Click **Add Condition**. For **Content type to scan** select **All content**. For **What to scan for** select **Matches predefined data type**. For **Select data type** select **United States - Individual Taxpayer Identification Number**. Select the remaining condition properties according to agency need. + 3. Click **Add Condition**. For **Content type to scan** select **All content**. For **What to scan for** select **Matches predefined data type**. For **Select data type** select **United States - Social Security Number***. Select the remaining condition properties according to agency need. 4. Configure other appropriate content and condition definition(s) based upon the agency's individual requirements and click **Continue**. 5. In the **Actions** section, select **Block message**. Under **Select when this action should apply**, check **Messages sent to external recipients** (See [GWS.COMMONCONTROLS.18.4v0.3](#gwscommoncontrols184v03)). 6. In the **Alerting** section, choose a severity level, and optionally, check **Send to alert center to trigger notifications**. diff --git a/baselines/drive.md b/scubagoggles/baselines/drive.md similarity index 99% rename from baselines/drive.md rename to scubagoggles/baselines/drive.md index 6d597599..44ff5532 100644 --- a/baselines/drive.md +++ b/scubagoggles/baselines/drive.md @@ -403,5 +403,3 @@ To limit Google Drive for Desktop to authorized devices: 6. Select Save. Alternatively, [Context-Aware access policies](https://support.google.com/a/answer/9275380?hl=en) can be configured for more granular controls around authorized devices. The access level applied to Google Drive must have the "Apply to Google desktop and mobile apps" enabled to meet this requirement. For additional guidance, see the *Common Controls Minimum Viable Secure Baseline*, section "Context-Aware Access for All Devices that Connect to GWS SHOULD be Implemented." - - diff --git a/baselines/gmail.md b/scubagoggles/baselines/gmail.md similarity index 98% rename from baselines/gmail.md rename to scubagoggles/baselines/gmail.md index 2cc39711..0cbbfb08 100644 --- a/baselines/gmail.md +++ b/scubagoggles/baselines/gmail.md @@ -139,7 +139,7 @@ An SPF policy SHALL be published for each domain that fails all non-approved sen - _Rationale:_ Adversaries could potentially manipulate the 'FROM' field in an email to appear as a legitimate sender, increasing the risk of phishing attacks. By publishing an SPF policy for each domain that fails all non-approved senders, this risk can be reduced as it provides a means to detect and block such deceptive emails. Additionally, SPF is required for federal, executive branch, departments and agencies by Binding Operational Directive 18-01, "Enhance Email and Web Security." - _Last modified:_ February 14, 2024 -- _Note:_ SPF defines two different "fail" mechanisms: fail (indicated by `-`, sometimes referred to as hardfail) and softail (indicated by `~`). Fail, as used in this baseline policy, refers to hardfail (i.e., `-`). +- _Note:_ SPF defines two different "fail" mechanisms: fail (indicated by `-`, sometimes referred to as hardfail) and softail (indicated by `~`). Fail, as used in this baseline policy, refers to hardfail (i.e., `-`). - MITRE ATT&CK TTP Mapping - [T1078: Valid Accounts](https://attack.mitre.org/techniques/T1078/) @@ -183,7 +183,7 @@ Domain-based Message Authentication, Reporting, and Conformance (DMARC) works wi #### GWS.GMAIL.4.1v0.3 A DMARC policy SHALL be published for every second-level domain. -- _Rationale:_ Without proper authentication and a DMARC policy available for each domain, recipients may improperly handle SPF and DKIM failures, possibly enabling adversaries to send deceptive emails that appear to be from your domain. Publishing a DMARC policy for every second-level domain further reduces the risk posed by authentication failures. +- _Rationale:_ Without proper authentication and a DMARC policy available for each domain, recipients may improperly handle SPF and DKIM failures, possibly enabling adversaries to send deceptive emails that appear to be from your domain. Publishing a DMARC policy for every second-level domain further reduces the risk posed by authentication failures. - _Last modified:_ November 13, 2023 - MITRE ATT&CK TTP Mapping @@ -235,6 +235,9 @@ An agency point of contact SHOULD be included for aggregate and failure reports. ### Implementation +[//]: # (Keep the version suffix out of the anchor.) +[//]: # (https://stackoverflow.com/questions/5319754/cross-reference-named-anchor-in-markdown) + #### GWS.GMAIL.4.1v0.3 Instructions DMARC is not configured through the Google Admin Console, but rather via DNS records hosted by the agency's domain(s). As such, implementation varies depending on how an agency manages its DNS records. See [Add your DMARC record](https://support.google.com/a/answer/2466563) for Google guidance. @@ -249,13 +252,13 @@ dig _dmarc.example.com txt If DMARC is configured, a response resembling `v=DMARC1; p=reject; pct=100; rua=mailto:reports@dmarc.cyber.dhs.gov, mailto:reports@example.com; ruf=mailto:reports@example.com` will be returned, though by necessity, the contents of the record will vary by agency. In this example, the policy indicates all emails failing the SPF/DKIM checks are to be rejected and aggregate reports sent to reports@dmarc.cyber.dhs.gov and reports@example.com. Failure reports will be sent to reports@example.com. #### GWS.GMAIL.4.2v0.3 Instructions -See [GWS.GMAIL.4.1v0.3](#gwsgmail41v03-instructions) instructions for an overview of how to publish and check a DMARC record. Ensure the record published includes `p=reject`. +See [GWS.GMAIL.4.1 instructions](#gmail41-instructions) for an overview of how to publish and check a DMARC record. Ensure the record published includes `p=reject`. #### GWS.GMAIL.4.3v0.3 Instructions -See [GWS.GMAIL.4.1v0.3](#gwsgmail41v03-instructions) instructions for an overview of how to publish and check a DMARC record. Ensure the record published includes reports@dmarc.cyber.dhs.gov as one of the emails for the `rua` field. +See [GWS.GMAIL.4.1 instructions](#gmail41-instructions) for an overview of how to publish and check a DMARC record. Ensure the record published includes reports@dmarc.cyber.dhs.gov as one of the emails for the `rua` field. #### GWS.GMAIL.4.4v0.3 Instructions -See [GWS.GMAIL.4.1v0.3](#gwsgmail41v03-instructions) instructions for an overview of how to publish and check a DMARC record. Ensure the record published includes a point of contact specific to your agency, in addition to reports@dmarc.cyber.dhs.gov, as one of the emails for the `rua` field and one or more agency-defined points of contact for the `ruf` field. +See [GWS.GMAIL.4.1 instructions](#gmail41-instructions) for an overview of how to publish and check a DMARC record. Ensure the record published includes a point of contact specific to your agency, in addition to reports@dmarc.cyber.dhs.gov, as one of the emails for the `rua` field and one or more agency-defined points of contact for the `ruf` field. ## 5. Attachment Protections @@ -1211,21 +1214,21 @@ To configure the settings for spam filtering: 1. Sign in to the [Google Admin Console](https://admin.google.com). 2. Select **Apps -\> Google Workspace -\> Gmail**. 3. Select **Spam, Phishing, and Malware**. - + #### GWS.GMAIL.19.1v0.3 Instructions For each rule listed under **Spam**: 1. Ensure that either: * **Bypass spam filters for messages from senders or domains in selected lists** is not selected, or * None of the lists shown under **Bypass spam filters for messages from senders or domains in selected lists** contain an entire domain. For example, the entire domain "example.com" is not acceptable, but the specific address, john.doe@example.com, would be. 2. Modify the rule or lists associated with the rule as needed, then select **Save.** - + #### GWS.GMAIL.19.2v0.3 Instructions For each rule listed under **Spam**: 1. Ensure that either: * **Bypass spam filters and hide warnings for messages from senders or domains in selected lists** is not selected, or * None of the lists shown under **Bypass spam filters and hide warnings for messages from senders or domains in selected lists** contain an entire domain. For example, the entire domain "example.com" is not acceptable, but the specific address, john.doe@example.com, would be. 2. Modify the rule or lists associated with the rule as needed, then select **Save.** - + #### GWS.GMAIL.19.3v0.3 Instructions For each rule listed under **Spam**: 1. Ensure that **Bypass spam filters and hide warnings for all messages from internal and external sender* is not selected. diff --git a/baselines/groups.md b/scubagoggles/baselines/groups.md similarity index 99% rename from baselines/groups.md rename to scubagoggles/baselines/groups.md index bc9e4f64..4af5e0d5 100644 --- a/baselines/groups.md +++ b/scubagoggles/baselines/groups.md @@ -38,7 +38,7 @@ This control determines whether users outside of an agency's organization can vi Note: Even with this setting configured, group owners can still explicitly add external POCs to a group ([Adding External Members](#2-adding-external-members)), or explicitly allow posting to a group by an external POC who has not been added to said group ([Allowing Posting by External Members](#3-allowing-posting-by-external-members)). -### Baseline Policies +### Policies #### GWS.GROUPS.1.1v0.3 Group access from outside the organization SHALL be disabled unless explicitly granted by the group owner. diff --git a/baselines/images/MFA.PNG b/scubagoggles/baselines/images/MFA.PNG similarity index 100% rename from baselines/images/MFA.PNG rename to scubagoggles/baselines/images/MFA.PNG diff --git a/baselines/meet.md b/scubagoggles/baselines/meet.md similarity index 99% rename from baselines/meet.md rename to scubagoggles/baselines/meet.md index 16ef8dcf..cf1fa3c3 100644 --- a/baselines/meet.md +++ b/scubagoggles/baselines/meet.md @@ -227,4 +227,4 @@ Incoming calls SHALL be restricted to contacts and other users in the organizati 3. Click **Meet safety settings**. 4. Click **Incoming call restrictions**. 5. Ensure **Users receive calls only from contacts and other users in the organization** or **Users can't receive calls** is selected. -6. Click **Save**. \ No newline at end of file +6. Click **Save**. diff --git a/baselines/sites.md b/scubagoggles/baselines/sites.md similarity index 99% rename from baselines/sites.md rename to scubagoggles/baselines/sites.md index 2a06b914..84c0b7d5 100644 --- a/baselines/sites.md +++ b/scubagoggles/baselines/sites.md @@ -32,7 +32,7 @@ The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "S This section covers whether users are able to access Google Sites. -### Policy +### Policies #### GWS.SITES.1.1v0.3 Sites Service SHOULD be disabled for all users. @@ -57,7 +57,7 @@ Sites Service SHOULD be disabled for all users. To configure the settings for Site creation and editing: -#### GWS.SITES.1.1v0.2 Instructions +#### GWS.SITES.1.1v0.3 Instructions 1. Sign in to the [Google Admin Console](https://admin.google.com). 2. Select **Apps** -\> **Google Workspace** -\> **Sites**. 3. Select **Service Status** diff --git a/scubagoggles/config.py b/scubagoggles/config.py new file mode 100644 index 00000000..5982d2c0 --- /dev/null +++ b/scubagoggles/config.py @@ -0,0 +1,229 @@ +"""ScubaGoggles User Configuration - The UserConfig class implementation +manages the creation, modification, and use of the ScubaGoggles user +configuration file. +""" + +import os + +from typing import Iterable, Union +from pathlib import Path + +from yaml import dump, Dumper, load, Loader + + +class UserConfig: + + """Implementation of user configuration for ScubaGoggles. Certain + settings, such as the directory for ScubaGoggles output, location of the + Google API credentials file, and the location of the OPA executable, + are managed by this class. + """ + + # FWIW, this was originally implemented using TOML (Tom's Obvious Minimal + # Language) (hence the reference to "_doc"), but was converted to use YAML + # for compatibilty with the other user configuration. For ScubaGoggles, + # the configuration file is named .scubagoggles (note the leading dot), + # located in the user's home directory. + + _defaults = {'scubagoggles': {'opa_dir': None, + 'output_dir': '~/scubagoggles'}} + + # This is the main key (TOML: table) in the configuration, and is used to + # continue defining the defaults. For example, we want the default + # credentials file default after the initial defaults dictionary has been + # defined (so we can access the output directory). + + _main = _defaults['scubagoggles'] + + _defaults['scubagoggles']['credentials'] = (f'{_main["output_dir"]}/' + 'credentials.json') + + _default_config_file = Path('~/.scubagoggles').expanduser() + + def __init__(self, config_file: Union[str, os.PathLike] = None): + + """UserConfig class initialization - this initializes the user + configuration stored in the class. + + :param Path config_file: [optional] user configuration file. By + default, this is ~/.scubagoggles + """ + + self._config_file = (Path(os.path.expandvars(config_file)) + if config_file else self._default_config_file) + + self._config_file = self._config_file.expanduser() + + self._check = True + + if self._config_file.exists(): + with self._config_file.open(encoding = 'utf-8') as in_stream: + self._doc = load(in_stream, Loader) + self._validate() + self._file_exists = True + else: + self._doc = dict(self._defaults) + self._file_exists = False + + @property + def file_exists(self) -> bool: + + """Returns True if the user's configuration file existed at the time + this instance was created. False is returned otherwise, including + if the file does exist but was written after this instance was + created. This property is being used to determine if a user's + "legacy" setup area should be looked for. + """ + + return self._file_exists + + def _get_path_config(self, name: str) -> Union[Path, None]: + + """Returns a Path value corresponding to the given configuration + variable name. + + :param str name: name of the configuration value. + + :return: configuration value as a Path. + """ + + value = (self._doc['scubagoggles'][name] + if name in self._doc['scubagoggles'] else None) + + if value: + value = Path(os.path.expandvars(value)).expanduser() + + return value + + @property + def credentials_file(self) -> Union[Path, None]: + + """Returns the Path to the Google API credentials file. + """ + + credentials = self._get_path_config('credentials') + + if self._check and credentials and (not credentials.exists() + or not credentials.is_file()): + raise FileNotFoundError(f'? {credentials} - credentials not found') + + return credentials + + @credentials_file.setter + def credentials_file(self, value: Union[str, os.PathLike]): + + """Sets the location of the Google API credentials file. + + :param value: location of the credentials file. + """ + + self._doc['scubagoggles']['credentials'] = str(value) + + @property + def opa_dir(self) -> Union[Path, None]: + + """Returns the directory containing the OPA executable file. + """ + + return self._get_path_config('opa_dir') + + @opa_dir.setter + def opa_dir(self, value: Union[str, os.PathLike]): + + """Sets the directory containing the OPA executable file. + + :param value: location of the OPA executable file. + """ + + opa_path = Path(os.path.expandvars(value)).expanduser() + + if not opa_path.exists() or not opa_path.is_dir(): + raise NotADirectoryError(f'? {opa_path} - directory not found') + + # Purposely storing this as the given value, so it's stored in the + # file as given. For example, if '~/opa' is given, we check it above + # in expanded form, but still store it unexpanded. + + self._doc['scubagoggles']['opa_dir'] = str(value) + + @property + def output_dir(self) -> Union[Path, None]: + + """Returns the user's directory used for ScubaGoggles output. + """ + + return self._get_path_config('output_dir') + + @output_dir.setter + def output_dir(self, value: Union[str, os.PathLike]): + + """Sets the user's ScubaGoggles output directory. + + :param value: location of the output directory. + """ + + output_dir = Path(os.path.expandvars(value)).expanduser() + + if not output_dir.exists() or not output_dir.is_dir(): + raise NotADirectoryError(f'? {output_dir} - directory not found') + + # Purposely storing this as the given value, so it's stored in the + # file as given. For example, if '~/scubagoggles' is given, we check + # it above in expanded form, but still store it unexpanded. + + self._doc['scubagoggles']['output_dir'] = str(value) + + def path_check(self, check: bool) -> None: + + """Setter property that alters path checking behavior. + + :param bool check: check valid paths and raise exceptions + if True. Should only be False during initial configuration when + directories/files may not yet exist. + """ + + self._check = check + + path_check = property(fset = path_check) + + def write(self): + + """Writes the configuration document in YAML format. + """ + + with self._config_file.open('w', encoding = 'utf-8') as out_stream: + dump(self._doc, out_stream, Dumper) + + def _validate(self, keys: Iterable = None) -> Union[list, None]: + + """Validates the current configuration by checking the dictionary + keys to make sure they match the keys in the default configuration. + This is a recursive method, initially called without arguments. + + :return: list of bad key names or None if configuration keys are + correct. + """ + + bad_keys = [] + + if not keys: + for key in self._doc: + bad_keys += self._validate((key,)) + if bad_keys: + raise KeyError(f'? {", ".join(bad_keys)} key(s) not ' + 'recognized') + return None + + current_defaults = self._defaults + + current_doc = self._doc + + for key in keys: + current_defaults = current_defaults[key] + current_doc = current_doc[key] + + if isinstance(current_doc, dict): + for key in current_doc: + bad_keys += self._validate([*keys, key]) + + return bad_keys diff --git a/scubagoggles/getopa.py b/scubagoggles/getopa.py new file mode 100644 index 00000000..b09d45eb --- /dev/null +++ b/scubagoggles/getopa.py @@ -0,0 +1,259 @@ +"""Implementation of ScubaGoggles OPA executable dowload. +""" + +import argparse +import logging +import platform +import re +import stat +import subprocess +import sys + +from hashlib import sha256 +from pathlib import Path +from tempfile import TemporaryDirectory +from urllib.error import HTTPError +from urllib.parse import urljoin, urlsplit +from urllib.request import Request, urlcleanup, urlopen, urlretrieve + +from scubagoggles.orchestrator import UserRuntimeError +from scubagoggles.utils import prompt_boolean + +log = logging.getLogger(__name__) + + +def getopa(arguments: argparse.Namespace): + + """Main get OPA function - this calls other functions in this module. + + :param arguments: arguments collected by the ArgumentParser. + """ + + log.info('ScubaGoggles OPA Download') + + config = arguments.user_config + opa_dir = arguments.opa_directory or config.opa_dir + + if opa_dir is None: + raise UserRuntimeError('No directory set for OPA executable - ' + 'run "setup" first (see documentation)') + + if not opa_dir.is_dir(): + answer = prompt_boolean(f'Create directory {opa_dir}') + if not answer: + log.error('OPA directory required') + return + + opa_dir.mkdir(exist_ok = True) + + if arguments.opa_directory and not config.opa_dir: + config.opa_dir = arguments.opa_directory + config.write() + + verify = not arguments.nocheck + force = arguments.force + version = arguments.version.lower() if arguments.version else None + + download_opa(opa_dir, version, verify, force) + + +def download_opa(opa_dir: Path, + version: str = None, + verify: bool = False, + force: bool = False): + + """Download the OPA executable for the current operating system + environment. + + :param Path opa_dir: directory where OPA executable will be located. + :param str version: [optional] version number of a specific OPA release + to download (version format vM.m.b). Downloads the latest OPA version + if not specified. + :param bool verify: [optional] if True, verifies the hash value of the + OPA executable with the expected value for the release. + :param bool force: [optional] if True, overwrites the OPA executable, if + it currently exists in the target download location. + :raises RuntimeError: for the case where the latest version number returned + by OPA does not look like a version (vM.m.b). + """ + + # pylint: disable=too-many-branches + + if sys.maxsize <= 2 ** 32: + raise UserRuntimeError('64-bit operating environment required for OPA') + + opa_base_url = 'https://github.com/open-policy-agent/opa/releases/' + version_re = re.compile(r'v\d+(?:\.\d+){2}') + + if not version: + latest_version_url = urljoin(opa_base_url, 'latest') + log.debug('Querying latest version from OPA: %s', latest_version_url) + request = Request(latest_version_url) + + with urlopen(request) as response: + version = urlsplit(response.url).path.split('/')[-1] + log.debug(' Version returned: %s', version) + + if not version_re.match(version): + raise RuntimeError(f'? "{version}" - unrecognized version string ' + 'returned as "latest" OPA version') + elif not version_re.match(version): + if not version_re.match(f'v{version}'): + raise UserRuntimeError(f'? "{version}" - unrecognized version ' + 'string - expected "v.."') + version = f'v{version}' + + file_name = opa_filespec() + + log.debug('Downloading %s to %s', file_name, str(opa_dir)) + + download_url = urljoin(opa_base_url, f'download/{version}/{file_name}') + output_file = opa_dir / file_name + + if output_file.exists(): + if not force: + force = prompt_boolean(f'Overwrite existing file ({output_file})', + False) + if not force: + return + + log.debug('Overwriting existing file: %s', str(output_file)) + output_file.unlink() + + log.debug('Download URL: %s', download_url) + + try: + urlretrieve(download_url, output_file) + except HTTPError as http_error: + log.error('HTTP error %d returned trying to access %s', + http_error.code, + download_url) + if http_error.code == 404: + # I want the error I'm raising in this instance ONLY. + # pylint: disable-next=raise-missing-from + raise UserRuntimeError('Unable to download OPA executable for ' + f'version {version} - check version') + raise UserRuntimeError('Failure downloading OPA executable') \ + from http_error + finally: + urlcleanup() + + mode = output_file.stat().st_mode + new_mode = mode | stat.S_IXUSR | stat.S_IRUSR + + if new_mode != mode: + log.debug(' Setting user execute/read permissions') + output_file.chmod(new_mode) + + if verify: + download_ok = verify_opa(download_url, output_file) + if not download_ok: + log.error('Hash generated from downloaded file does NOT ' + 'match expected value') + + test_opa(output_file) + + +def opa_filespec(opa_dir: Path = None): + + """Returns the file name for the OPA executable that is EXPECTED to be + the default for the current operating environment. For example, on a + macOS system with the ARM architecture, the default executable should + be "opa_darwin_arm64_static", but the user may rename this to be + simply "opa" or download the AMD architecture executable, which will + run even in an ARM-based macOS environment. This function simply + returns the name of the expected executable. + + :param opa_dir: [optional] expected location of the OPA executable. + :return: complete file specification (as a Path), if the OPA directory + is provided; otherwise, the expected OPA file name (as a str) for + the current environment. + :rtype: Path or str + """ + + os_type = platform.system().lower() + + arch = platform.machine().lower() + + if arch == 'x86_64': + arch = 'amd64' + elif arch.startswith('arm'): + arch = 'arm64' + + file_name = f'opa_{os_type}_{arch}' + + file_name += '.exe' if os_type == 'windows' else '_static' + + return opa_dir / file_name if opa_dir else file_name + + +def test_opa(opa_exe_file: Path): + + """Runs the OPA "version" command to check that the downloaded OPA + successfully executes. + + :param Path opa_exe_file: OPA executable file specification. + """ + + log.info('Test run OPA executable') + + result = subprocess.run(f'{opa_exe_file} version'.split(), + capture_output = True, + check = False) + + if result.returncode != 0: + log.error('Run OPA (%s) results in error: %d', + str(opa_exe_file), + result.returncode) + log.debug('Standard error output: \n%s', result.stderr.decode()) + + log.debug('OPA output: \n%s', result.stdout.decode()) + + +def verify_opa(download_url: str, opa_exe_file: Path): + + """Verifies that the hash value of the downloaded OPA executable matches + the value provided by OPA release. + + :param str download_url: URL for the OPA version release area. + :param Path opa_exe_file: OPA executable file specification. + + :return: True if the hash value for the downloaded OPA executable matches + the expected value for the release; False otherwise. + :rtype: bool + """ + + log.info('Verifying downloaded OPA hash value') + + hash_suffix = '.sha256' + hash_file_url = download_url + hash_suffix + + contents = opa_exe_file.read_bytes() + file_hash_value = sha256(contents, usedforsecurity = False).hexdigest() + + with TemporaryDirectory('_opa_sha') as temp_dir: + hash_file_name = opa_exe_file.name + hash_suffix + hash_file = Path(temp_dir, hash_file_name) + + log.debug(' Downloading %s to %s', hash_file_name, temp_dir) + log.debug(' Download URL: %s', download_url) + + try: + urlretrieve(hash_file_url, hash_file) + except HTTPError as http_error: + log.error('HTTP error %d returned trying to access %s', + http_error.code, + download_url) + raise UserRuntimeError('Failure downloading OPA hash file') \ + from http_error + finally: + urlcleanup() + + contents = hash_file.read_text(encoding = 'utf-8') + + expected_value = contents.split()[0] + + log.debug(' Expected hash value: %s', expected_value) + log.debug(' Actual hash value: %s', file_hash_value) + + return file_hash_value == expected_value diff --git a/scubagoggles/main.py b/scubagoggles/main.py index d439f7ed..a33f7320 100644 --- a/scubagoggles/main.py +++ b/scubagoggles/main.py @@ -6,119 +6,390 @@ """ import argparse -from scubagoggles.orchestrator import Orchestrator +import logging +import sys + +from pathlib import Path + +from scubagoggles.config import UserConfig +from scubagoggles.getopa import getopa +from scubagoggles.orchestrator import Orchestrator, UserRuntimeError +from scubagoggles.purge import purge_reports +from scubagoggles.reporter.md_parser import MarkdownParserError from scubagoggles.scuba_argument_parser import ScubaArgumentParser +from scubagoggles.user_setup import default_file_names, find_legacy_dir, \ + user_setup +from scubagoggles.utils import path_parser +from scubagoggles.version import Version -def get_gws_args(parser): - """ - Adds the arguments for the GWS parser +EXIT_FAILURE = 1 + +EXIT_SUCCESS = 0 + + +def get_gws_args(parser: argparse.ArgumentParser, user_config: UserConfig): - :param parser: argparse object + """Adds the arguments for the GWS parser + + :param argparse.ArgumentParser parser: argparse object + :param UserConfig user_config: user configuration object """ + + # This module is located in the scubagoggles subdirectory. The parent + # directory is where the rego and baselines subdirectories are also + # located - these are the default for the rego and baseline files, + # respectively. The instructions typically instruct the user to place + # both the OPA executable and the credentials JSON file in this + # directory. + + scuba_path = Path(__file__).parent + user_dir = find_legacy_dir(user_config) or user_config.output_dir + opa_dir = user_config.opa_dir or user_dir + gws = Orchestrator.gws_products() - gws_baselines = gws["gws_baselines"] - - default_file_output_names = { - "provider_output_name": "ProviderSettingsExport", - "rego_output_name": "TestResults", - "report_output_name": "BaselineReports", - "output_folder_name": "GWSBaselineConformance", - "json_output_name": "ScubaResults" - } - - parser.add_argument('-b', '--baselines', - type = str, nargs="+", default=gws_baselines, choices=gws_baselines, metavar='', - help='A list of one or more abbreviated GWS baseline names that the tool will assess.' + - f' Defaults to all baselines. Choices: {(", ".join(gws_baselines))}') - - parser.add_argument('-o','--outputpath', type=str,default='./', metavar='', - help="The folder path where both the output JSON & HTML report will be created." + - ' Defaults to "./" The current directory. ') - - parser.add_argument('-c','--credentials', type=str,default='./credentials.json', metavar='', - help='The relative path and name of the OAuth / service account credentials json file. ' + - 'Defaults to "./credentials.json" which means the tool will look ' + - 'for the file named credentials.json in the current directory.') - - parser.add_argument('--config', type=str, required=False, metavar='', - help='Local file path to a YAML formatted configuration file. ' + - 'Configuration file parameters can be used in place of command-line ' + - 'parameters. Additional parameters and variables not available on the ' + - 'command line can also be included in the file that will be provided to the ' + - 'tool for use in specific tests.') - - parser.add_argument('--outjsonfilename', type=str, - default=default_file_output_names['json_output_name'], metavar='', - help='The name of the file that encapsulates all assessment output.' + - f" Defaults to {default_file_output_names['json_output_name']}.") - - parser.add_argument('--subjectemail', type=str, default=None, metavar='', - help='Only applicable when using a service account. ' + - 'The email address of a user the service account should act on behalf of. ' + - 'This user must have the necessary privileges to run scubagoggles.') - - parser.add_argument("--customerid", type=str, default="my_customer", metavar='', - help='The customer ID the tool should run on. Defaults to "my_customer" which will be' + - ' the domain of the user / service account authenticating.') - - parser.add_argument('--opapath', type=str, default='./', metavar='', - help='The relative path to the directory containing the OPA executable. ' + - 'Defaults to "./" the current executing directory.') - - parser.add_argument('--regopath', type=str, default='./rego', metavar='', - help='The relative path to the directory contain the folder containing the rego files. ' + - 'Defaults to "./rego" the "rego" folder inside the current executing directory.') - - parser.add_argument('--documentpath', type=str, default='./baselines', metavar='', - help='The relative path to the directory containing the SCuBA baseline documents. ' + - 'Defaults to "./baselines" the "baselines" folder inside the current executing directory.') - - parser.add_argument('--runcached', action='store_true', - help='This switch when added will run in the tool in "RunCached mode". ' + - 'When combined with -sa allows to the user to skip authentication and provider export.') - - parser.add_argument('--skipexport', action = 'store_true', - help='This switch when added will skip the provider export.' + - 'To be used in conjunction with --runcached.') - - parser.add_argument('--outputfoldername', type=str, - default=default_file_output_names['output_folder_name'], metavar='', - help='The name of the folder created in --outputpath where both the output JSON and' + - ' the HTML report will be created.' + - f" Defaults to {default_file_output_names['output_folder_name']}." + - ' The client\'s local timestamp will be appended to this name.') - - parser.add_argument('--outputproviderfilename', type=str, - default=default_file_output_names['provider_output_name'], metavar='', - help='The name of the Provider output json in --outputpath.' + - f" Defaults to {default_file_output_names['provider_output_name']}.") - - parser.add_argument('--outputregofilename', type=str, - default=default_file_output_names['rego_output_name'], metavar='', - help='The name of the Rego output json in --outputpath.' + - f" Defaults to {default_file_output_names['rego_output_name']}.") - - parser.add_argument('--outputreportfilename', type=str, - default=default_file_output_names['report_output_name'], metavar='', - help='The name of the main html file homepage created in --outputpath.' + - f" Defaults to {default_file_output_names['report_output_name']}.") - - parser.add_argument('--omitsudo', action = 'store_true', - help='This switch prevents running the OPA executable with sudo.') - - parser.add_argument('--quiet', action = 'store_true', - help='This switch suppresses automatically launching a web browser to open' + - ' the html report output and the loading bar output.') - - parser.add_argument('--debug', action = 'store_true', - help='This switch is used to print debugging information for OPA.') + gws_baselines = tuple(sorted(gws['gws_baselines'])) -def dive(): + def gws_dispatch(args): + Orchestrator(args).start_automation() + + parser.set_defaults(dispatch = gws_dispatch) + + help_msg = ('A list of one or more abbreviated GWS baseline names that the ' + 'tool will assess. Defaults to all baselines. ' + f'Choices: {(", ".join(gws_baselines))}') + parser.add_argument('--baselines', + '-b', + nargs = '+', + default = gws_baselines, + choices = gws_baselines, + metavar = '', + help = help_msg) + + help_msg = ('The folder path where both the output JSON & HTML report will ' + f'be created. Defaults to {user_dir}.') + parser.add_argument('--outputpath', + '-o', + default = user_dir, + metavar = '', + type = path_parser, + help = help_msg) + + default_json = default_file_names.json_output_name + help_msg = ('The name of the file that encapsulates all assessment output. ' + f' Defaults to {default_json}.') + parser.add_argument('--outjsonfilename', + default = default_json, + metavar = '', + help = help_msg) + + try: + default_credentials = user_config.credentials_file + except FileNotFoundError: + default_credentials = str(user_dir / 'credentials.json') + help_msg = ('The location and name of the OAuth / service account ' + f'credentials json file. Defaults to "{default_credentials}".') + parser.add_argument('--credentials', + '-c', + default = Path(default_credentials), + metavar = '', + type = path_parser, + help = help_msg) + + help_msg = ('Local file path to a YAML formatted configuration file. ' + 'Configuration file parameters can be used in place of ' + 'command-line parameters. Additional parameters and variables ' + 'not available on the command line can also be included in ' + 'the file that will be provided to the tool for use in ' + 'specific tests.') + parser.add_argument('--config', + metavar='', + help = help_msg) + + help_msg = ('Only applicable when using a service account. The email ' + 'address of a user the service account should act on ' + 'behalf of. This user must have the necessary privileges ' + 'to run scubagoggles.') + parser.add_argument('--subjectemail', + metavar = '', + help = help_msg) + + help_msg = ('The customer ID the tool should run on. Defaults to ' + '"my_customer" which will be the domain of the ' + 'user / service account authenticating.') + parser.add_argument('--customerid', + default = 'my_customer', + metavar = '', + help = help_msg) + + help_msg = ('The directory containing the OPA executable. ' + f'Defaults to {opa_dir}.') + parser.add_argument('--opapath', + default = Path(opa_dir), + metavar = '', + type = path_parser, + help = help_msg) + + default_rego = scuba_path / 'rego' + help_msg = ('The relative path to the directory contain the folder ' + f'containing the rego files. Defaults to {default_rego}.') + parser.add_argument('--regopath', + default = default_rego, + metavar = '', + type = path_parser, + help = help_msg) + + default_baselines = scuba_path / 'baselines' + help_msg = ('The relative path to the directory containing the SCuBA ' + f'baseline documents. Defaults to {default_baselines}') + parser.add_argument('--documentpath', + default = default_baselines, + metavar = '', + type = path_parser, + help = help_msg) + + output_folder = default_file_names.output_folder_name + help_msg = ('The name of the folder created in --outputpath where both ' + 'the output JSON and the HTML report will be created. ' + f"Defaults to {output_folder}. The client's local timestamp " + 'will be appended to this name.') + parser.add_argument('--outputfoldername', + default = output_folder, + metavar = '', + help = help_msg) + + provider_filename = default_file_names.provider_output_name + help_msg = ('The name of the Provider output json in --outputpath. ' + f'Defaults to {provider_filename}.') + parser.add_argument('--outputproviderfilename', + default = provider_filename, + metavar = '', + help = help_msg) + + rego_filename = default_file_names.rego_output_name + help_msg = ('The name of the Rego output json in --outputpath. ' + f'Defaults to {rego_filename}.') + parser.add_argument('--outputregofilename', + default = rego_filename, + metavar = '', + help = help_msg) + + report_filename = default_file_names.report_output_name + help_msg = ('The name of the main html file homepage created in ' + '--outputpath. Defaults to ' + f'{report_filename}.') + parser.add_argument('--outputreportfilename', + default = report_filename, + metavar = '', + help = help_msg) + + help_msg = ('This switch suppresses automatically launching a web ' + 'browser to open the html report output and the loading ' + 'bar output.') + parser.add_argument('--quiet', action = 'store_true', help = help_msg) + + help_msg = 'This switch is used to print debugging information for OPA.' + parser.add_argument('--debug', action = 'store_true', help = help_msg) + + group = parser.add_argument_group('Cached Mode options') + + help_msg = ('This switch when added will run in the tool in ' + '"RunCached mode". When combined with --skipexport allows ' + 'the user to skip authentication and provider export.') + group.add_argument('--runcached', + action = 'store_true', + help = help_msg) + + help_msg = ('This switch when added will skip the provider export. To be ' + 'used in conjunction with --runcached.') + group.add_argument('--skipexport', + action = 'store_true', + help = help_msg) + + +def get_opa_args(parser: argparse.ArgumentParser, user_config: UserConfig): + + """Adds the arguments for the "get OPA" parser. + + :param argparse.ArgumentParser parser: argparse object """ - Takes in the arguments need to run scubagoggles + + parser.set_defaults(dispatch = getopa) + + parser.set_defaults(user_config = user_config) + + parser.add_argument('--nocheck', + '-nc', + default = False, + action = 'store_true', + help = 'Do not check hash code after download') + + parser.add_argument('--force', + '-f', + default = False, + action = 'store_true', + help = 'Overwrite existing OPA executable') + + parser.add_argument('--version', + '-v', + metavar = '', + help = 'Version of OPA to download (default: latest ' + 'version)') + + help_msg = 'Directory containing OPA executable' + if user_config.opa_dir: + help_msg += f' (default: {user_config.opa_dir})' + parser.add_argument('--opa_directory', + '-r', + metavar = '', + type = path_parser, + help = help_msg) + + +def get_setup_args(parser: argparse.ArgumentParser, user_config: UserConfig): + + """Adds the arguments for the setup parser + + :param argparse.ArgumentParser parser: argparse object + :param UserConfig user_config: user configuration object + """ + + parser.set_defaults(dispatch = user_setup) + + parser.set_defaults(user_config = user_config) + + parser.add_argument('--credentials', + '-c', + metavar = '', + type = path_parser, + help = 'OAuth2 credentials file for Google APIs') + + parser.add_argument('--mkdir', + '-m', + default = False, + action = 'store_true', + help = 'Create directory(ies), if needed') + + parser.add_argument('--nocheck', + '-nc', + default = False, + action = 'store_true', + help = 'Do not check for directory or file existence') + + parser.add_argument('--nodownload', + '-nd', + default = False, + action = 'store_true', + help = 'Do not download OPA executable when it does ' + 'not exist') + + parser.add_argument('--noprompt', + '-np', + default = False, + action = 'store_true', + help = 'Do not prompt for missing items') + + parser.add_argument('--opa_directory', + '-r', + metavar = '', + type = path_parser, + help = 'Directory containing OPA executable') + + parser.add_argument('--work_directory', + '-d', + metavar = '', + type = path_parser, + help = 'Scubagoggles output directory') + + +def get_purge_args(parser: argparse.ArgumentParser, user_config: UserConfig): + + """Adds the arguments for the purge parser + + :param argparse.ArgumentParser parser: argparse object + :param UserConfig user_config: user configuration object """ - overall_description = """ SCuBA Security Baseline Conformance Automation Tool + parser.set_defaults(dispatch = purge_reports) + + parser.set_defaults(user_config = user_config) + + parser.add_argument('--expire', + '-e', + metavar = '', + type = int, + help = 'Days after which reports have expired') + + keep_default = 1 + parser.add_argument('--keep', + '-k', + metavar = '', + type = int, + default = keep_default, + help = 'Number of recent reports to keep (default: ' + f'{keep_default})') + + +def get_version_args(parser: argparse.ArgumentParser): + + """Adds the arguments for the version parser + + :param argparse.ArgumentParser parser: argparse object + """ + + parser.set_defaults(dispatch = Version.command_dispatch) + + group = parser.add_mutually_exclusive_group() + + pfx = '(developers)' + + group.add_argument('--check', + '-c', + default = False, + action = 'store_true', + help = f'{pfx} Check version number consistency in code') + + group.add_argument('--upgrade', + '-u', + metavar = '', + help = f'{pfx} Upgrade code to new version number') + + +def log_level(level): + + """Normalizes a given log level string. + + A complete upper-cased log level string is returned if the given string + uniquely identifies one of the log levels. The returned log level string + may be passed to the logger routines. + + :param str level: abbreviation that uniquely identifies + a log level (e.g., 'd', 'info', 'crit'). + + :return: upper-cased log level string. + """ + + log_levels = ('DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL') + + return_level = level.upper() + + if return_level not in log_levels: + + match_level = [x for x in log_levels if x.startswith(return_level)] + + if not match_level: + raise RuntimeError(f'{level} - unrecognized log level') + + return_level = match_level[0] + + return return_level + + +def dive(): + + """Takes in the arguments needed to run scubagoggles + """ + + overall_description = """SCuBA Security Baseline Conformance Automation Tool # Examples @@ -135,19 +406,93 @@ def dive(): scubagoggles gws -h """ - parser = argparse.ArgumentParser(add_help=True, description=overall_description, - formatter_class=argparse.RawDescriptionHelpFormatter) + helpFormatter = argparse.RawDescriptionHelpFormatter + parser = argparse.ArgumentParser(description = overall_description, + formatter_class = helpFormatter) + + parser.set_defaults(dispatch = lambda _: parser.print_help()) - subparsers = parser.add_subparsers(dest='scuba_cmd') + log_levels = ('debug', 'info', 'warning', 'error', 'critical') + + default_log_level = 'warning' + + user_config = UserConfig() + + parser.add_argument('--log', + '-l', + choices = ('d', 'i', 'w', 'e', 'c') + log_levels, + default = default_log_level, + help = 'Level for message log ' + f'(default: {default_log_level})') + + subparsers = parser.add_subparsers(description = 'valid subcommands:', + help = ' -h for help') + + help_msg = ('SCuBA automated conformance check for ' + 'Google Workspace (GWS) products') + gws_parser = subparsers.add_parser('gws', + description = help_msg, + help = help_msg) + get_gws_args(gws_parser, user_config) + + help_msg = 'Download OPA executable' + getopa_parser = subparsers.add_parser('getopa', + description = help_msg, + help = help_msg) + get_opa_args(getopa_parser, user_config) + + help_msg = 'Purge old ScubaGoggles reports' + purge_parser = subparsers.add_parser('purge', + description = help_msg, + help = help_msg) + get_purge_args(purge_parser, user_config) + + help_msg = 'ScubaGoggles user setup' + setup_parser = subparsers.add_parser('setup', + description = help_msg, + help = help_msg) + get_setup_args(setup_parser, user_config) + + help_msg = 'ScubaGoggles version' + setup_parser = subparsers.add_parser('version', + description = help_msg, + help = help_msg) + get_version_args(setup_parser) - gws_parser_help = "Run the SCuBA automated conformance " \ - "check against one or more Google Workspace products" - gws_parser = subparsers.add_parser('gws', help=gws_parser_help) - get_gws_args(gws_parser) scuba_parser = ScubaArgumentParser(parser) args = scuba_parser.parse_args_with_config() - if args.scuba_cmd == 'gws': - Orchestrator(args).start_automation() - else: - raise Exception("Invalid subparser. Run scubagoggles -h to see a list of valid subparsers") + logging.basicConfig(format = '(%(levelname)s): %(message)s') + level = log_level(args.log) + log = logging.root + log.setLevel(level) + + # When trapping exceptions to suppress tracebacks (which users don't need + # to see for obvious failures not related to the code), make sure the + # process exits with an error code. + + error = False + + try: + args.dispatch(args) + except NotADirectoryError as nad: + print(f'\n{nad}') + error = True + except FileNotFoundError as fnf: + print(f'\n{fnf}') + error = True + except MarkdownParserError as mpe: + print(f'\n{mpe}') + error = True + except UserRuntimeError as ure: + print(f'\n{ure}') + error = True + except KeyboardInterrupt: + print('\nUser interrupt') + + if error: + sys.exit(EXIT_FAILURE) + + +if __name__ == '__main__': + dive() diff --git a/scubagoggles/orchestrator.py b/scubagoggles/orchestrator.py index b5b68931..f0e6fd80 100644 --- a/scubagoggles/orchestrator.py +++ b/scubagoggles/orchestrator.py @@ -2,23 +2,34 @@ orchestrator.py is the main module that starts and handles the output of the provider, rego, and report modules of the SCuBA tool """ + import argparse -import shutil -import os import json +import logging +import os +import platform +import shutil import webbrowser + +from datetime import datetime, timezone from pathlib import Path -from datetime import datetime from tqdm import tqdm -from googleapiclient.discovery import build -from scubagoggles.auth import gws_auth from scubagoggles.provider import Provider -from scubagoggles.run_rego import opa_eval -from scubagoggles.reporter import md_parser +from scubagoggles.reporter.md_parser import MarkdownParser from scubagoggles.reporter.reporter import Reporter +from scubagoggles.run_rego import opa_eval, find_opa from scubagoggles.utils import rel_abs_path +from scubagoggles.version import Version +log = logging.getLogger(__name__) + + +class UserRuntimeError(RuntimeError): + """This exception class is for runtime errors (possibly caused by the + user) for which a traceback might not be appropriate (error has nothing + to do with the code). + """ class Orchestrator: @@ -29,32 +40,33 @@ class Orchestrator: # Dictionary of the SCuBA GWS baselines short names plus full names. _gws_baselines = [ - "gmail", - "calendar", - "groups", - "chat", - "drive", - "meet", - "sites", - "commoncontrols", - "rules", - "classroom" + 'gmail', + 'calendar', + 'groups', + 'chat', + 'drive', + 'meet', + 'sites', + 'commoncontrols', + 'rules', + 'classroom' ] _prod_to_fullname = { - "gmail": "Gmail", - "calendar": "Google Calendar", - "groups": "Groups for Business", - "chat": "Google Chat", - "drive": "Google Drive and Docs", - "meet": "Google Meet", - "sites": "Google Sites", - "commoncontrols": "Common Controls", - "rules": "Rules", - "classroom": "Google Classroom" + 'gmail': 'Gmail', + 'calendar': 'Google Calendar', + 'groups': 'Groups for Business', + 'chat': 'Google Chat', + 'drive': 'Google Drive and Docs', + 'meet': 'Google Meet', + 'sites': 'Google Sites', + 'commoncontrols': 'Common Controls', + 'rules': 'Rules', + 'classroom': 'Google Classroom' } + _gws = { - "gws_baselines": _gws_baselines, - "prod_to_fullname": _prod_to_fullname + 'gws_baselines': _gws_baselines, + 'prod_to_fullname': _prod_to_fullname } def __init__(self, args: argparse.Namespace): @@ -75,26 +87,26 @@ def gws_products(cls) -> dict: """ return cls._gws - def _run_gws_providers(self, services: dict): + def _run_gws_providers(self): """ Runs the provider scripts and outputs a json to path - - :param services: a dictionary of Google API service objects """ args = self._args products = args.baselines - out_folder = args.outputpath - provider = Provider(services, args.customerid) - provider_dict = provider.call_gws_providers(products, args.quiet) - provider_dict['successful_calls'] = list(provider.successful_calls) - provider_dict['unsuccessful_calls'] = list(provider.unsuccessful_calls) + with Provider(args.customerid, + args.credentials, + args.subjectemail) as provider: + provider_dict = provider.call_gws_providers(products, args.quiet) + provider_dict['baseline_suffix'] = Version.suffix + provider_dict['successful_calls'] = list(provider.successful_calls) + provider_dict['unsuccessful_calls'] = list(provider.unsuccessful_calls) - settings_json = json.dumps(provider_dict, indent = 4) - out_path = out_folder + f'/{args.outputproviderfilename}.json' - with open(out_path, mode="w", encoding='UTF-8') as outfile: - outfile.write(settings_json) + out_jsonfile = args.outputpath / args.outputproviderfilename + out_jsonfile = out_jsonfile.with_suffix('.json') + with out_jsonfile.open('w', encoding = 'utf-8') as out_stream: + json.dump(provider_dict, out_stream, indent = 4) def _rego_eval(self): """ @@ -105,32 +117,28 @@ def _rego_eval(self): args = self._args products = args.baselines products_bar = tqdm(products, leave=False, disable=args.quiet) - out_folder = args.outputpath results = [] for product in products_bar: product_name = product - input_file = f'{out_folder}/{args.outputproviderfilename}.json' + input_file = args.outputpath / f'{args.outputproviderfilename}.json' opa_path = args.opapath rego_path = args.regopath - products_bar.set_description(f"Running Rego verification for {product}...") - product_tests = opa_eval( - product_name=product_name, - input_file=input_file, - opa_path=opa_path, - rego_path=rego_path, - omit_sudo=args.omitsudo, - debug=args.debug - ) + products_bar.set_description(f'Running Rego verification for {product}...') + product_tests = opa_eval(product_name, + input_file, + opa_path, + rego_path, + args.debug) try: results.extend(product_tests[0]) except Exception as exc: - raise Exception("run_rego error") from exc + raise Exception('run_rego error') from exc - settings_json = json.dumps(results,sort_keys=True ,indent = 4) - out_path = out_folder + f'/{args.outputregofilename}.json' - with open(out_path, mode="w", encoding='UTF-8') as outfile: - outfile.write(settings_json) + out_jsonfile = args.outputpath / args.outputregofilename + out_jsonfile = out_jsonfile.with_suffix('.json') + with out_jsonfile.open('w', encoding = 'utf-8') as out_stream: + json.dump(results, out_stream, indent = 4) @staticmethod def _pluralize(singular: str, plural: str, count: int) -> str: @@ -141,24 +149,23 @@ def _pluralize(singular: str, plural: str, count: int) -> str: :param plural: string value in plural tense :param count: how many of string value """ - if count == 1: - return singular - return plural + + return singular if count == 1 else plural @classmethod def _generate_summary(cls, stats: dict) -> str: """ Craft the html-formatted summary from the stats dictionary. """ - n_success = stats["Passes"] - n_warn = stats["Warnings"] - n_fail = stats["Failures"] - n_manual = stats["Manual"] - n_error = stats["Errors"] + n_success = stats['Passes'] + n_warn = stats['Warnings'] + n_fail = stats['Failures'] + n_manual = stats['Manual'] + n_error = stats['Errors'] n_omit = stats['Omit'] pass_summary = (f"
{n_success}" - f" {cls._pluralize('pass', 'passes', n_success)}
") + f" {cls._pluralize('pass', 'passes', n_success)}") # The warnings, failures, and manuals are only shown if they are # greater than zero. Reserve the space for them here. They will @@ -171,22 +178,26 @@ def _generate_summary(cls, stats: dict) -> str: if n_warn > 0: warning_summary = (f"
{n_warn}" - f" {cls._pluralize('warning', 'warnings', n_warn)}
") + f" {cls._pluralize('warning', 'warnings', n_warn)}" + '') if n_fail > 0: failure_summary = (f"
{n_fail}" - f" {cls._pluralize('failure', 'failures', n_fail)}
") + f" {cls._pluralize('failure', 'failures', n_fail)}" + '') if n_manual > 0: manual_summary = (f"
{n_manual} manual" - f" {cls._pluralize('check', 'checks', n_manual)}
") + f" {cls._pluralize('check', 'checks', n_manual)}" + '') if n_error > 0: error_summary = (f"
{n_error}" - f" {cls._pluralize('error', 'errors', n_error)}
") + f" {cls._pluralize('error', 'errors', n_error)}" + '') if n_omit > 0: omit_summary = (f"
{n_omit}" - " omitted
") + ' omitted') - return f"{pass_summary}{warning_summary}{failure_summary}" \ - f"{manual_summary}{omit_summary}{error_summary}" + return (f'{pass_summary}{warning_summary}{failure_summary}' + f'{manual_summary}{omit_summary}{error_summary}') def _run_reporter(self): """ @@ -196,10 +207,9 @@ def _run_reporter(self): # Make the report output folders args = self._args out_folder = args.outputpath - individual_reports_path = out_folder + "/IndividualReports" - reports_images_path = individual_reports_path + "/images" - Path(individual_reports_path).mkdir(parents=True, exist_ok=True) - Path(reports_images_path).mkdir(parents=True, exist_ok=True) + individual_reports_path = out_folder / 'IndividualReports' + reports_images_path = individual_reports_path / 'images' + reports_images_path.mkdir(parents=True, exist_ok=True) # Copy the CISA logo to the repo folder so that it can be accessed # from there @@ -212,44 +222,37 @@ def _run_reporter(self): # we should load the test results json here products = args.baselines prod_to_fullname = args.fullnamesdict - test_results_json = out_folder + f'/{args.outputregofilename}.json' - with open(test_results_json, mode='r', encoding='UTF-8') as file: + test_results_json = out_folder / f'{args.outputregofilename}.json' + with test_results_json.open(encoding='UTF-8') as file: test_results_data = json.load(file) # Get the successful/unsuccessful commands - settings_name = f'{out_folder}/{args.outputproviderfilename}.json' - with open(settings_name, mode='r', encoding='UTF-8') as file: + settings_name = out_folder / f'{args.outputproviderfilename}.json' + with settings_name.open(encoding='UTF-8') as file: settings_data = json.load(file) + tenant_info = settings_data['tenant_info'] + tenant_domain = tenant_info['domain'] successful_calls = set(settings_data['successful_calls']) unsuccessful_calls = set(settings_data['unsuccessful_calls']) - # baseline_path - subset_prod_to_fullname = { - key: prod_to_fullname[key] - for key in args.baselines - if key in prod_to_fullname - } + md_products = set(args.baselines) - {'rules'} + + md_parser = MarkdownParser(args.documentpath) - baseline_policies = md_parser.read_baseline_docs(args.documentpath, - subset_prod_to_fullname) + baseline_policies = md_parser.parse_baselines(md_products) - if "rules" in args.baselines: + if 'rules' in args.baselines: # There's no baseline specific to rules, so this case # needs to be handled separately - baseline_policies["rules"] = [] + baseline_policies['rules'] = [] for group in baseline_policies['commoncontrols']: if group['GroupName'] == 'System-defined Rules': - baseline_policies["rules"].append(group) + baseline_policies['rules'].append(group) break else: - raise RuntimeError("Unable to process 'rules' as no policy group named " - "'System-defined Rules' found in the Common Controls baseline.") - - # Load Org metadata from provider - with open(f'{out_folder}/{args.outputproviderfilename}.json', - mode='r',encoding='UTF-8') as file: - tenant_info = json.load(file)['tenant_info'] - tenant_domain = tenant_info['domain'] + raise RuntimeError("Unable to process 'rules' as no policy " + "group named 'System-defined Rules' found " + 'in the Common Controls baseline.') # Determine if any controls were omitted in the config file omissions = {} @@ -268,27 +271,28 @@ def _run_reporter(self): product_abbreviation_mapping = {fullname: shortname for shortname, fullname in prod_to_fullname.items()} - timestamp_utc = datetime.utcnow() + timestamp_utc = datetime.now(timezone.utc) timestamp_zulu = timestamp_utc.strftime('%Y-%m-%dT%H:%M:%S.%f')[:-3] + 'Z' report_metadata = { - "TenantId": None, - "DisplayName": None, - "DomainName": tenant_domain, - "ProductSuite": "GWS", - "ProductsAssessed": products_assessed, - "ProductAbbreviationMapping": product_abbreviation_mapping, - "Tool": "ScubaGoggles", - "ToolVersion": "0.3.0", - "TimeStampZulu": timestamp_zulu + 'TenantId': None, + 'DisplayName': None, + 'DomainName': tenant_domain, + 'ProductSuite': 'GWS', + 'ProductsAssessed': products_assessed, + 'ProductAbbreviationMapping': product_abbreviation_mapping, + 'Tool': 'ScubaGoggles', + 'ToolVersion': Version.number, + 'TimeStampZulu': timestamp_zulu } - total_output.update({"MetaData": report_metadata}) + total_output.update({'MetaData': report_metadata}) main_report_name = args.outputreportfilename products_bar = tqdm(products, leave=False, disable=args.quiet) for product in products_bar: - products_bar.set_description(f"Creating the HTML and JSON Report for {product}...") + products_bar.set_description('Creating the HTML and JSON Report ' + f'for {product}...') reporter = Reporter(product, tenant_domain, main_report_name, @@ -301,55 +305,64 @@ def _run_reporter(self): stats_and_data[product] = \ reporter.rego_json_to_ind_reports(test_results_data, out_folder) - baseline_product_summary = {product:stats_and_data[product][0]} - baseline_product_results_json = {product:stats_and_data[product][1]} + baseline_product_summary = {product: stats_and_data[product][0]} + baseline_product_results_json = {product: stats_and_data[product][1]} summary.update(baseline_product_summary) results.update(baseline_product_results_json) - total_output.update({"Summary": summary}) - total_output.update({"Results": results}) + total_output.update({'Summary': summary}) + total_output.update({'Results': results}) # Create the ScubaResults files - with open(f'{out_folder}/{args.outputproviderfilename}.json', encoding='UTF-8') as file: + scuba_results_file = out_folder / f'{args.outputproviderfilename}.json' + with scuba_results_file.open(encoding='UTF-8') as file: raw_data = json.load(file) - total_output.update({"Raw": raw_data}) - report = json.dumps(total_output, indent = 4) - with open(f"{out_folder}/{out_jsonfile}.json", mode='w', encoding='UTF-8') as results_file: - results_file.write(report) + total_output.update({'Raw': raw_data}) + + report_file = out_folder / f'{out_jsonfile}.json' + with report_file.open('w', encoding = 'utf-8') as results_file: + json.dump(total_output, results_file, indent = 4) - # Delete the ProviderOutput file as it's now encapsulated in the ScubaResults file - os.remove(f"{out_folder}/{args.outputproviderfilename}.json") + # Delete the ProviderOutput file as it's now encapsulated in the + # ScubaResults file + scuba_results_file.unlink() # Make the report front page - report_path = out_folder + "/" + f'{args.outputreportfilename}.html' - abs_report_path = os.path.abspath(report_path) + report_path = out_folder / f'{args.outputreportfilename}.html' fragments = [] table_data = [] for product, stats in stats_and_data.items(): - ## Build the "Baseline Conformance Reports" column + # Build the "Baseline Conformance Reports" column product_capitalize = product.capitalize() full_name = prod_to_fullname[product] - link_path = "./IndividualReports/" f"{product_capitalize}Report.html" - link = f"{full_name}" - table_data.append({ - "Baseline Conformance Reports": link, - "Details": self._generate_summary(stats[0]) - }) + link_path = f'./IndividualReports/{product_capitalize}Report.html' + link = f'{full_name}' + table_data.append({'Baseline Conformance Reports': link, + 'Details': self._generate_summary(stats[0])}) fragments.append(Reporter.create_html_table(table_data)) - with open(f"{report_path}", mode='w', encoding='UTF-8') as file: - file.write(Reporter.build_front_page_html(fragments, tenant_info)) + front_page_html = Reporter.build_front_page_html(fragments, tenant_info) + report_path.write_text(front_page_html, encoding = 'utf-8') # suppress opening the report in the browser if args.quiet: return # Open the report in the client's default web browser - # pylint: disable=E1101 - if os.name == 'nt': - os.startfile(abs_report_path) + if platform.system().lower() == 'windows': + # Keep pylint from complaining when run on linux/macOS + # pylint: disable-next=no-member + os.startfile(report_path) else: - report_path = "file:///" + abs_report_path - webbrowser.get().open(report_path, new=2) + report_url = f'file:///{report_path}' + try: + webbrowser.get().open(report_url, new=2) + except webbrowser.Error: + # You get here when a user runs on a linux system, + # "ssh'd" to a terminal, in which case the user most likely + # expects there'll be no browser popping up (so there's no + # need to have the exception abort the run). + log.warning('No web browser available, report: %s', + str(report_path)) def _run_cached(self): """ @@ -357,29 +370,26 @@ def _run_cached(self): """ args = self._args - args.outputpath = str(rel_abs_path(__file__,args.outputpath)) + args.outputpath = str(rel_abs_path(__file__, args.outputpath)) Path(args.outputpath).mkdir(parents=True, exist_ok=True) args.outputpath = os.path.abspath(args.outputpath) if not args.skipexport: - creds = gws_auth(args.credentials) - services = {} - services['reports'] = build('admin', 'reports_v1', credentials=creds) - services['directory'] = build('admin', 'directory_v1', credentials=creds) - services['groups'] = build('groupssettings', 'v1', credentials=creds) - self._run_gws_providers(services) + self._run_gws_providers() if not os.path.exists(f'{args.outputpath}/{args.outputproviderfilename}.json'): - # When running run_cached, the provider output might not exist as a stand-alone - # file depending what version of ScubaGoggles created the output. If the provider - # output doesn't exist as a standalone file, create it from the scuba results - # file so the other functions can execute as normal. + # When running run_cached, the provider output might not exist as + # a standalone file depending on what version of ScubaGoggles + # created the output. If the provider output doesn't exist as a + # standalone file, create it from the scuba results file so the + # other functions can execute as normal. with open(f'{args.outputpath}/{args.outjsonfilename}.json', 'r', - encoding='UTF-8') as scuba_results: + encoding='UTF-8') as scuba_results: provider_output = json.load(scuba_results)['Raw'] - with open(f'{args.outputpath}/{args.outputproviderfilename}.json', 'w', - encoding='UTF-8') as provider_file: + with open(f'{args.outputpath}/{args.outputproviderfilename}.json', + 'w', encoding='UTF-8') as provider_file: json.dump(provider_output, provider_file) + self._rego_eval() self._run_reporter() @@ -389,46 +399,57 @@ def start_automation(self): """ args = self._args - if "commoncontrols" in args.baselines and "rules" not in args.baselines: - args.baselines.append("rules") - if "rules" in args.baselines and "commoncontrols" not in args.baselines: - args.baselines.append("commoncontrols") + args.baselines = list(args.baselines) + if 'commoncontrols' in args.baselines and 'rules' not in args.baselines: + args.baselines.append('rules') + if 'rules' in args.baselines and 'commoncontrols' not in args.baselines: + args.baselines.append('commoncontrols') args.baselines.sort() # get the absolute paths relative to this directory - args.outputpath = (Path.cwd() / args.outputpath).resolve() - args.credentials = (Path.cwd() / args.credentials).resolve() - args.opapath = Path(args.opapath).resolve() - args.regopath = Path(args.regopath).resolve() - args.documentpath = Path(args.documentpath).resolve() + if not isinstance(args.outputpath, Path): + args.outputpath = Path(args.outputpath) + args.outputpath = args.outputpath.resolve() + args.credentials = args.credentials.resolve() + args.opapath = args.opapath.resolve() + args.regopath = args.regopath.resolve() + args.documentpath = args.documentpath.resolve() + + see_docs = 'see ScubaGoggles setup documentation' + + try: + find_opa(args.opapath) + except FileNotFoundError as fnf: + raise UserRuntimeError(f'? "{args.opapath}" - OPA executable ' + f'missing - {see_docs}') from fnf + + if not args.credentials.exists(): + raise UserRuntimeError(f'? "{args.credentials}" - Google ' + f'credentials file missing - {see_docs}') # add any additional variables to args gws_params = self.gws_products() additional_args = vars(args) - additional_args['fullnamesdict'] = gws_params["prod_to_fullname"] + additional_args['fullnamesdict'] = gws_params['prod_to_fullname'] if args.skipexport and not args.runcached: - exc = 'Used --skipexport without --runcached' \ - 'please rerun scubagoggles with --runcached as well' - raise Exception(exc) + message = ('Used --skipexport without --runcached please rerun ' + 'scubagoggles with --runcached as well') + raise UserRuntimeError(message) if not args.runcached: # create a timestamped output folder now = datetime.now() - folder_time = now.strftime("%Y_%m_%d_%H_%M_%S") + folder_time = now.strftime('%Y_%m_%d_%H_%M_%S') timestamped_folder = f'{args.outputfoldername}_{folder_time}' + if not args.outputpath.exists(): + log.warning('%s - parent directory for output subdirectories ' + 'will be created', + args.outputpath) args.outputpath = (args.outputpath / timestamped_folder).resolve() - Path(args.outputpath).mkdir(parents=True, exist_ok=True) - args.outputpath = os.path.abspath(args.outputpath) - - # authenticate - creds = gws_auth(args.credentials, args.subjectemail) - services = {} - services['reports'] = build('admin', 'reports_v1', credentials=creds) - services['directory'] = build('admin', 'directory_v1', credentials=creds) - services['groups'] = build('groupssettings', 'v1', credentials=creds) + args.outputpath.mkdir(parents=True, exist_ok=True) - self._run_gws_providers(services) + self._run_gws_providers() self._rego_eval() self._run_reporter() else: diff --git a/scubagoggles/policy_api.py b/scubagoggles/policy_api.py new file mode 100644 index 00000000..0494ffd6 --- /dev/null +++ b/scubagoggles/policy_api.py @@ -0,0 +1,817 @@ +"""Google Policy API class implementation +""" + +import io +import json +import logging +import os +import re +import sys +import time + +from collections import defaultdict +from collections.abc import Iterable +from pathlib import Path +from random import random +from time import sleep + +from google.auth.transport.requests import AuthorizedSession + +from scubagoggles.auth import GwsAuth + +log = logging.getLogger(__name__) + +# Not all lambdas are bad, you know (see below)... +# pylint: disable=unnecessary-lambda-assignment + + +class PolicyAPI: + + """Implementation for accessing Google Policy API. It should be used as + a context manager (see 'with' statement) so the Google API resource is + closed when it's no longer needed. + """ + + # LAMBDAS! They're VOODOO to some, just like the "goto". The following + # are short functions that evaluate whether the Google API setting value + # is exactly or roughly what's expected. Using lambdas encapsulates the + # functionality within the class without the bother of making them + # static. They're simple and do the job, and they can be placed close + # to the policy settings where they're referenced. + + isBool = lambda x: isinstance(x, bool) + + # Google's "enum" type is essentially the string name for the enumeration + # member. It must be all alphanumeric characters with possible underscores. + + isEnum = lambda x: isinstance(x, str) and re.match(r'^[A-Z0-9_]+$', x) + + isInt = lambda x: isinstance(x, int) + + isListStrings = lambda x: (isinstance(x, list) + and all(isinstance(e, str) for e in x)) + + isState = lambda x: x.lower() in ('disabled', 'enabled') + + isString = lambda x: isinstance(x, str) + + isDuration = lambda x: isinstance(x, str) and re.match(r'(?i)^\d+[hms]$', x) + + # There may be duplicate policies returned for an orgunit/group and + # section. The policies must be "reduced" to single settings using + # a method. The default "reducer" method is to select the policy with the + # highest "sort order", and this is applied if a reducer is not specified + # in the expected policy settings below. + + _merge_reducer = '_merge' + + # This is the list of policy settings returned by Google that are relevant + # to the secure baselines. Settings that are not relevant are ignored + # (i.e., they are NOT included in this data structure - these are settings + # that are not referenced in any of our policy code). The key is the section + # (what Google calls "setting type") (NOTE that while Google returns a + # setting type with a period (.) delimiting the type (e.g., + # "sites.service_status"), we convert the periods into underscores because + # Rego uses the period to delimit hierarchy). The setting is a dictionary + # containing the name of each setting and a function that will validate that + # the setting value is correct. Optionally, a reducer may be given if it + # differs from the default ("maximum sort order") - this is set using the + # "reducer" key. + # + # The entries are ordered alphabetically (not that they have to, but it + # does make finding them in this data structure easier). If you need to + # add a new entry, it may be easiest to copy a similar entry and update + # it with the correct section/setting names and verifier, and finally + # whether a reducer is needed. + + _expectedPolicySettings = { + 'analytics_service_status': {'settings': {'serviceState': isState}}, + 'applied_digital_skills_service_status': {'settings': { + 'serviceState': isState}}, + 'appsheet_service_status': {'settings': {'serviceState': isState}}, + 'blogger_service_status': {'settings': {'serviceState': isState}}, + 'blogger_user_takeout': {'settings': {'takeoutStatus': isEnum}}, + 'books_user_takeout': {'settings': {'takeoutStatus': isEnum}}, + 'calendar_appointment_schedules': {'settings': { + 'enablePayments': isBool}}, + 'calendar_external_invitations': {'settings': {'warnOnInvite': isBool}}, + 'calendar_interoperability': {'settings': { + 'enableExchangeRoomBooking': isBool, + 'enableFullEventDetails': isBool, + 'enableInteroperability': isBool}}, + 'calendar_primary_calendar_max_allowed_external_sharing': {'settings': { + 'maxAllowedExternalSharing': isEnum}}, + 'calendar_secondary_calendar_max_allowed_external_sharing': { + 'settings': {'maxAllowedExternalSharing': isEnum}}, + 'calendar_service_status': {'settings': {'serviceState': isState}}, + 'chat_chat_file_sharing': {'settings': { + 'externalFileSharing': isEnum, + 'internalFileSharing': isEnum}}, + 'chat_chat_history': {'reducer': _merge_reducer, + 'settings': { + 'allowUserModification': isBool, + 'historyOnByDefault': isBool}}, + 'chat_external_chat_restriction': {'reducer': _merge_reducer, + 'settings': { + 'allowExternalChat': isBool, + 'externalChatRestriction': isEnum}}, + 'chat_service_status': {'settings': {'serviceState': isState}}, + 'chat_space_history': {'settings': {'historyState': isEnum}}, + 'chrome_canvas_service_status': {'settings': {'serviceState': isState}}, + 'classroom_api_data_access': {'settings': {'enableApiAccess': isBool}}, + 'classroom_class_membership': {'settings': { + 'whoCanJoinClasses': isEnum, + 'whichClassesCanUsersJoin': isEnum}}, + 'classroom_guardian_access': {'settings': { + 'allowAccess': isBool, + 'whoCanManageGuardianAccess': isEnum}}, + 'classroom_roster_import': {'settings': {'rosterImportOption': isEnum}}, + 'classroom_student_unenrollment': {'settings': { + 'whoCanUnenrollStudents': isEnum}}, + 'classroom_teacher_permissions': {'settings': { + 'whoCanCreateClasses': isEnum}}, + 'cloud_search_service_status': {'settings': {'serviceState': isState}}, + 'drive_and_docs_drive_for_desktop': {'settings': { + 'allowDriveForDesktop': isBool, + 'restrictToAuthorizedDevices': isBool}}, + 'drive_and_docs_drive_sdk': {'reducer': _merge_reducer, + 'settings': { + 'enableDriveSdkApiAccess': isBool}}, + 'drive_and_docs_external_sharing': {'settings': { + 'accessCheckerSuggestions': isEnum, + 'allowNonGoogleInvites': isBool, + 'allowNonGoogleInvitesInAllowlistedDomains': isBool, + 'allowPublishingFiles': isBool, + 'allowReceivingExternalFiles': isBool, + 'allowReceivingFilesOutsideAllowlistedDomains': isBool, + 'allowedPartiesForDistributingContent': isEnum, + 'externalSharingMode': isEnum, + 'warnForExternalSharing': isBool, + 'warnForSharingOutsideAllowlistedDomains': isBool}}, + 'drive_and_docs_general_access_default': {'settings': { + 'defaultFileAccess': isEnum}}, + 'drive_and_docs_service_status': {'settings': { + 'serviceState': isState}}, + 'drive_and_docs_shared_drive_creation': {'settings': { + 'allowContentManagersToShareFolders': isBool, + 'allowExternalUserAccess': isBool, + 'allowManagersToOverrideSettings': isBool, + 'allowNonMemberAccess': isBool, + 'allowSharedDriveCreation': isBool, + 'allowedPartiesForDownloadPrintCopy': isEnum, + 'orgUnitForNewSharedDrives': isEnum}}, + 'drive_and_docs_file_security_update': {'settings': { + 'allowUsersToManageUpdate': isBool, + 'securityUpdate': isEnum}}, + 'enterprise_service_restrictions_service_status': {'settings': { + 'serviceState': isState}}, + 'gmail_auto_forwarding': {'settings': {'enableAutoForwarding': isBool}}, + 'gmail_email_attachment_safety': {'settings': { + 'anomalousAttachmentProtectionConsequence': isEnum, + 'applyFutureRecommendedSettingsAutomatically': isBool, + 'attachmentWithScriptsProtectionConsequence': isEnum, + 'enableAnomalousAttachmentProtection': isBool, + 'enableAttachmentWithScriptsProtection': isBool, + 'enableEncryptedAttachmentProtection': isBool, + 'encryptedAttachmentProtectionConsequence': isEnum}}, + 'gmail_email_spam_filter_ip_allowlist': {'settings': { + 'allowedIpAddresses': isListStrings}}, + 'gmail_enhanced_pre_delivery_message_scanning': {'settings': { + 'enableImprovedSuspiciousContentDetection': isBool}}, + 'gmail_links_and_external_images': {'settings': { + 'applyFutureSettingsAutomatically': isBool, + 'enableAggressiveWarningsOnUntrustedLinks': isBool, + 'enableExternalImageScanning': isBool, + 'enableShortenerScanning': isBool}}, + 'gmail_service_status': {'settings': {'serviceState': isState}}, + 'gmail_spoofing_and_authentication': {'settings': { + 'applyFutureSettingsAutomatically': isBool, + 'detectDomainNameSpoofing': isBool, + 'detectDomainSpoofingFromUnauthenticatedSenders': isBool, + 'detectEmployeeNameSpoofing': isBool, + 'detectGroupsSpoofing': isBool, + 'detectUnauthenticatedEmails': isBool, + 'domainNameSpoofingConsequence': isEnum, + 'domainSpoofingConsequence': isEnum, + 'employeeNameSpoofingConsequence': isEnum, + 'groupsSpoofingConsequence': isEnum, + 'unauthenticatedEmailConsequence': isEnum}}, + 'groups_for_business_groups_sharing': {'reducer': _merge_reducer, + 'settings': { + 'collaborationCapability': isEnum, + 'createGroupsAccessLevel': isEnum, + 'newGroupsAreHidden': isBool, + 'ownersCanAllowExternalMembers': isBool, + 'ownersCanAllowIncomingMailFromPublic': isBool, + 'ownersCanHideGroups': isBool, + 'viewTopicsDefaultAccessLevel': isEnum}}, + 'groups_for_business_service_status': {'settings': { + 'serviceState': isState}}, + 'jamboard_service_status': {'settings': {'serviceState': isState}}, + 'keep_service_status': {'settings': {'serviceState': isState}}, + 'location_history_user_takeout': {'settings': { + 'takeoutStatus': isEnum}}, + 'maps_user_takeout': {'settings': {'takeoutStatus': isEnum}}, + 'meet_safety_access': {'settings': {'meetingsAllowedToJoin': isEnum}}, + 'meet_safety_domain': {'settings': {'usersAllowedToJoin': isEnum}}, + 'meet_safety_external_participants': {'settings': { + 'enableExternalLabel': isBool}}, + 'meet_safety_host_management': {'settings': { + 'enableHostManagement': isBool}}, + 'meet_service_status': {'settings': {'serviceState': isState}}, + 'meet_video_recording': {'settings': {'enableRecording': isBool}}, + 'migrate_service_status': {'settings': {'serviceState': isState}}, + 'pay_user_takeout': {'settings': {'takeoutStatus': isEnum}}, + 'photos_user_takeout': {'settings': {'takeoutStatus': isEnum}}, + 'play_console_user_takeout': {'settings': {'takeoutStatus': isEnum}}, + 'play_user_takeout': {'settings': {'takeoutStatus': isEnum}}, + 'security_advanced_protection_program': {'settings': { + 'enableAdvancedProtectionSelfEnrollment': isBool, + 'securityCodeOption': isEnum}}, + 'security_less_secure_apps': {'reducer': _merge_reducer, + 'settings': { + 'allowLessSecureApps': isBool}}, + 'security_login_challenges': {'settings': { + 'enableEmployeeIdChallenge': isBool}}, + 'security_password': {'settings': { + 'allowedStrength': isEnum, + 'allowReuse': isBool, + 'enforceRequirementsAtLogin': isBool, + 'expirationDuration': isDuration, + 'maximumLength': isInt, + 'minimumLength': isInt}}, + 'security_session_controls': {'settings': { + 'webSessionDuration': isDuration}}, + 'security_super_admin_account_recovery': {'reducer': _merge_reducer, + 'settings': { + 'enableAccountRecovery': isBool}}, + 'security_user_account_recovery': {'reducer': _merge_reducer, + 'settings': { + 'enableAccountRecovery': isBool}}, + 'sites_service_status': {'settings': {'serviceState': isState}}, + 'sites_sites_creation_and_modification': {'settings': { + 'allowSitesCreation': isBool, + 'allowSitesModification': isBool}}, + 'takeout_service_status': {'settings': {'serviceState': isState}}, + 'tasks_service_status': {'settings': {'serviceState': isState}}, + 'vault_service_status': {'settings': {'serviceState': isState}}, + 'workspace_marketplace_apps_access_options': {'settings': { + 'accessLevel': isEnum, + 'allowAllInternalApps': isBool}}, + 'youtube_user_takeout': {'settings': {'takeoutStatus': isEnum}}} + + # In this section of Google's Policy API documentation: + # https://cloud.google.com/identity/docs/concepts/policy-api-concepts + # #default_field_values + # there are a number of settings which may not be present in the top-level + # orgunit, and for these cases defaults must be applied. The following + # default values are taken directly from the documentation. Google claims + # that it would take an act of god to change these defaults, but since + # these are copied from an external source, there is a risk that one or + # more defaults may be changed. There is also no assurance that Google's + # documentation reflects the current default values (i.e., the + # documented defaults must be kept current with the implementation). + + _defaults = { + 'chat_chat_history': {'allowUserModification': True, + 'historyOnByDefault': False}, + 'chat_external_chat_restriction': { + 'allowExternalChat': False, + 'externalChatRestriction': 'NO_RESTRICTION'}, + 'drive_and_docs_drive_sdk': {'enableDriveSdkApiAccess': True}, + 'drive_and_docs_external_sharing': { + 'accessCheckerSuggestions': 'RECIPIENTS_OR_AUDIENCE_OR_PUBLIC', + 'allowNonGoogleInvites': True, + 'allowNonGoogleInvitesInAllowlistedDomains': False, + 'allowPublishingFiles': True, + 'allowReceivingExternalFiles': True, + 'allowReceivingFilesOutsideAllowlistedDomains': True, + 'allowedPartiesForDistributingContent': 'ALL_ELIGIBLE_USERS', + 'externalSharingMode': 'ALLOWED', + 'warnForExternalSharing': True, + 'warnForSharingOutsideAllowlistedDomains': True}, + 'drive_and_docs_general_access_default': { + 'defaultFileAccess': 'LINK_SHARING_PRIVATE'}, + 'gmail_workspace_sync_for_outlook': { + 'enableGoogleWorkspaceSyncForMicrosoftOutlook': True}, + 'gmail_email_spam_filter_ip_allowlist': { + 'allowedIpAddresses': []}, + 'groups_for_business_groups_sharing': { + 'collaborationCapability': 'DOMAIN_USERS_ONLY', + 'createGroupsAccessLevel': 'USERS_IN_DOMAIN', + 'newGroupsAreHidden': False, + 'ownersCanAllowExternalMembers': False, + 'ownersCanAllowIncomingMailFromPublic': True, + 'ownersCanHideGroups': False, + 'viewTopicsDefaultAccessLevel': 'DOMAIN_USERS'}, + 'security_less_secure_apps': {'allowLessSecureApps': False}, + 'security_super_admin_account_recovery': { + 'enableAccountRecovery': False}, + 'security_user_account_recovery': {'enableAccountRecovery': False}, + 'workspace_marketplace_apps_access_options': { + 'accessLevel': 'ALLOW_ALL', + 'allowAllInternalApps': False}, + } + + # This is the URL to the Policies API. + _baseURL = 'https://cloudidentity.googleapis.com/v1beta1/policies' + _too_many_requests = 429 + + def __init__(self, gws_auth: GwsAuth, top_orgunit: str): + + """PolicyAPI class instance initialization. + + :param GwsAuth gws_auth: GWS credentials instance. + :param str top_orgunit: name of the top-level orgunit. + """ + + # Google's AuthorizedSession is currently being used because this + # API is not available in the Google API Client interface. + self._session = AuthorizedSession(gws_auth.credentials) + + self._top_orgunit = top_orgunit + + # This is a mapping of Google's org unit ids to names. + self._orgunit_id_map = self._get_ou() + + self._group_id_map = self._get_groups() + + # This is a dictionary that is used in reducing the policies returned + # by Google. + self._reduction_map = None + + def __enter__(self): + + # This class is implemented as a context manager - meaning that it's + # intended to be instantiated via the "with" statement. This ensures + # that the Google resource will be properly closed. + + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + + self.close() + + def close(self): + + """Closes Google's resource. This should be called when the instance + is no longer needed. + """ + + self._session.close() + + def get_policies(self) -> dict: + + """Query Google's Policy API and return the policy settings grouped + by org unit. + + :return: dictionary of settings, with keys being the org unit names + and the values are dictionaries with name/value pairs for the + settings. + :rtype: dict + """ + + # Google returns the policy settings in a dictionary. Each setting + # contains one or more values and is associated with an org unit. + policies = self._get_policies_list() + + # If the following environment variable is defined, the policy data + # returned by Google, as well as the orgunit and group maps, will be + # written to the file name defined in the variable. If the value + # contains only whitespace, the data will be written to the standard + # output stream. This is intended for debugging. + dump_envname = 'SCUBAGOGGLES_DUMP_FILE' + if dump_envname in os.environ: + self._dump(policies, os.environ[dump_envname].strip()) + + self._reduce(policies) + + result = defaultdict(dict) + + for key, policy in self._reduction_map.items(): + orgunit_name, section = key + result[orgunit_name][section] = self._settings(policy) + + self._apply_defaults(result) + + return result + + def _get_ou(self) -> dict: + + """Calls Google's Directory API to get all org units, and returns a + mapping of org unit id to name. + + :return: dictionary with the Google org unit identifier as the key, + and the corresponding name as the value. + :rtype: dict + """ + + # See comment above regarding the Policy API not currently included + # in Google's Client API. While the directory API is included in the + # Client API, it's easiest here to use the same mechanism as is used + # for the Policy API. + url = ('https://admin.googleapis.com/admin/directory/' + 'v1/customer/my_customer/orgunits') + + params = {'orgUnitPath': '/', + 'type': 'all_including_parent'} + + response = self._get(url, params) + + # Based on the Client API, there should be no possibility of a next + # page when getting the org units, but this check is here just in + # case. + if 'nextPageToken' in response: + raise RuntimeError(f'{url} - unhandled next page token') + + orgunit_id_map = {} + + for orgunit_data in response['organizationUnits']: + orgunit_id = orgunit_data['orgUnitId'].removeprefix('id:') + orgunit_id_map[orgunit_id] = {'name': orgunit_data['name'], + 'path': orgunit_data['orgUnitPath']} + + return orgunit_id_map + + def _get_groups(self) -> dict: + + """Calls Google's Directory API to get all groups in the root org unit, + and returns a mapping of group id to name. + + :return: dictionary with the Google group identifier as the key, + and the corresponding name as the value. + :rtype: dict + """ + + # See comment above regarding the Policy API not currently included + # in Google's Client API. While the directory API is included in the + # Client API, it's easiest here to use the same mechanism as is used + # for the Policy API. + url = 'https://admin.googleapis.com/admin/directory/v1/groups' + + group_id_map = {} + + params = {'customer': 'my_customer'} + + while True: + + response = self._get(url, params) + + for group_data in response['groups']: + group_id = group_data['id'] + group_id_map[group_id] = group_data['name'] + + if 'nextPageToken' not in response: + break + + params['pageToken'] = response['nextPageToken'] + + return group_id_map + + def _get_policies_list(self) -> list: + + """Calls the Google Policy API and returns the results. + + :return: list of dictionaries containing policy settings. + :rtype: list + """ + + policies = [] + + # The parameters will only be used if Google returns the policies in + # multiple pages. The following loop will iterate multiple times only + # if there's more than one page. + params = None + + while True: + + policies_result = self._get(self._baseURL, params) + + # So far, only one page of actual content is being returned + # (with 2 blank pages, which is another issue). Merge each page's + # policies in with the result list. + if 'policies' in policies_result: + policies += policies_result['policies'] + + if 'nextPageToken' not in policies_result: + break + + params = {'pageToken': policies_result['nextPageToken']} + + return policies + + def _get(self, url: str, params: dict = None) -> dict: + + """Invokes a GET request using the given URL, returning the result. + + :param str url: URL + :param dict params: [optional] parameters to be used in the request. + + :return: dictionary result returned by the Google request. + :rtype: dict + """ + + response = None + + start_time = time.time() + + # Google will return the "too many requests" error if the requests come + # in without any delay between them. The total iterations is limited to + # 8 because the delay is exponential and after several iterations the + # delay becomes impractical if the error continues to be returned. + # In practice, with the API calls it sometimes takes seconds to get a + # response, and for those cases a subsequent request is made after a + # sufficient delay due to the time it took for the previous response. + + for iter_count in range(1, 9): + + response = self._session.get(url, params = params) + if response.status_code != self._too_many_requests: + break + + # Back off the requests exponentially (adding up to a 10% random + # delay). + + delay = (2 ** iter_count) / 10 + delay += (delay * random()) + + log.debug('attempt %i - too many requests response: ' + 'delay %.2f seconds', iter_count, delay) + + sleep(delay) + + end_time = time.time() - start_time + + response_json = response.json() + + if not response.ok: + raise RuntimeError(f'? {url} - {response_json["error"]["message"]}') + + log.debug('URL: %s', url) + if params: + log.debug(' params: %s', params) + log.debug('Result length: %d', len(response.text)) + log.debug('Elapsed time: %.2f seconds', end_time) + + return response_json + + def _reduce(self, policies: Iterable): + + """Reduces the policies returned by Google to those that apply for + each orgunit and group. + + This method populates the instance's "_reduction_map". It is a + dictionary where the key is a tuple containing the orgunit/group name + and section name. The value is a policy (dictionary). After the + reduction, there will be only one policy for each section in an + orgunit/group. + + See https://cloud.google.com/identity/docs/concepts/policy-api-concepts + #reducers_for_settings + for Google's discussion of the "reduction process". + + :param list policies: list of policies (dictionaries). + """ + + self._reduction_map = {} + + # Sorting the policies by largest sort order first is KEY to getting + # the correct policies. This accomplishes the "max" reduction + # referred to by Google, and it also necessary for the "merge" + # reduction. + policies.sort(key = self._sort_order, reverse = True) + + for policy in policies: + + # For the current policy setting, use the returned org unit id + # to get the org unit name, which is used as the key for the + # result dictionary. + orgunit_id = policy['policyQuery']['orgUnit'] + orgunit_id = orgunit_id.removeprefix('orgUnits/') + orgunit_name = self._orgunit_id_map[orgunit_id]['name'] + + if 'group' in policy['policyQuery']: + group_id = policy['policyQuery']['group'] + group_id = group_id.removeprefix('groups/') + group_name = self._group_id_map[group_id] + orgunit_name += f' (group "{group_name}")' + + # The setting has two layers in the policies dictionary. Depending + # on the setting, there may be one or multiple values - so the + # setting itself has a "type" (i.e., "name), and the value is a + # dictionary with one or more name/value pairs. The setting type + # is something like "settings/appsheet.service_status". We remove + # the "settings/" prefix and convert the dot to an underscore. + # This results in "appsheet_service_status", which is a format that + # can easily be used in Rego code. + policy_setting = policy['setting'] + section = policy_setting['type'].removeprefix('settings/') + section = section.replace('.', '_') + + key = (orgunit_name, section) + + # This is where the dictionary is populated, with policies + # having the highest sort order for each orgunit/group and + # section. This is possible because of the initial sorting + # above. + if key not in self._reduction_map: + self._reduction_map[key] = policy + continue + + expected_settings = self._expectedPolicySettings.get(section) + + if not expected_settings: + # The section is not in the expected settings, which means + # it is not associated with a secure baseline. + continue + + # If there is a reducer associated with this policy, it will + # be invoked. + reduce_name = expected_settings.get('reduce_method') + + if reduce_name: + reduce_method = getattr(self, reduce_name) + reduce_method(key, policy) + + @staticmethod + def _settings(policy: dict) -> dict: + + """Given a policy (dictionary) from Google's response, returns the + name/value pairs, which are the setting values for a section. + + :param policy: "raw" policy data dictionary returned by Google. + """ + + return policy['setting']['value'] + + @staticmethod + def _sort_order(policy: dict) -> float: + + """Given a policy (dictionary) from Google's response, returns the + sort order value for the policy. + + :param policy: "raw" policy data dictionary returned by Google. + """ + + return policy['policyQuery']['sortOrder'] + + def _merge(self, key: tuple, policy: dict): + + """Peforms a merge reduction of the given policy with the current + policy (having the greatest sort order). + + :param key: tuple containing the orgunit name and section name, used + for locating the corresponding policy in the reduction map. + :param policy: "raw" policy having a sort order below the policy + stored in the reduction map. + """ + + # Get the policy from the reduction map. The policies have already + # been sorted by largest sort order first, so this one is the + # in-effect policy for the given key. + + current_policy = self._reduction_map[key] + + current_settings = self._settings(current_policy) + + # If any setting present in the given lower sort order policy is + # not present in the in-effect policy, add the setting to the + # current policy. + + for setting, value in self._settings(policy).items(): + if setting not in current_settings: + current_settings[setting] = value + + def _apply_defaults(self, policies: dict): + + """Applies Google's default setting values to the top orgunit policies. + See the discussion above where the default setting values are defined. + + :param policies: the complete set of policies, formatted from the raw + data returned by Google. + """ + + if not self._top_orgunit: + log.debug('No top orgunit specified in PolicyAPI - ' + 'skipping defaults') + return + + # The defaults apply only to the top-level orgunit. The top orgunit + # must contain all settings, and the subordinate orgunits and groups + # only contain settings that have changed from the top orgunit's + # values. We'll keep track of the default settings actually applied + # so they can be reported in the log. + + top_ou_policies = policies[self._top_orgunit] + + applied = defaultdict(dict) + + for section, settings in self._defaults.items(): + if section not in top_ou_policies: + # Copy the section dictionary into the top OU policies as a + # precaution because the defaults are read-only. + top_ou_policies[section] = settings.copy() + applied[section] = settings + continue + + for setting, value in settings.items(): + if setting not in top_ou_policies[section]: + top_ou_policies[section][setting] = value + applied[section][setting] = value + + if applied: + log.debug('Default value(s) applied to %s:', self._top_orgunit) + for section, settings in applied.items(): + log.debug(' %s:', section) + for setting, value in settings.items(): + log.debug(' %s: %s', setting, str(value)) + + def _dump(self, policies: Iterable, file_or_stream = sys.stdout): + + """Writes the orgunit and group maps, and the given policies from + Google to the given I/O stream or file. + + :param policies: sequence of policy data (dictionaries) returned by + Google's Policy API. + :param file_or_stream: [optional] file specification for the file + to be written, or an existing I/O stream. If not given or if + an empty string is provided, the standard output stream (stdout) + is used. + """ + + out_data = {'orgunits': self._orgunit_id_map, + 'groups': self._group_id_map, + 'policies': policies} + + is_stream = not file_or_stream or isinstance(file_or_stream, io.IOBase) + + # pylint: disable=consider-using-with + out_stream = (sys.stdout if not file_or_stream + else file_or_stream if is_stream + else Path(file_or_stream).open('wt', encoding = 'utf-8')) + + try: + json.dump(out_data, out_stream, indent = 2) + finally: + if not is_stream: + out_stream.close() + + def verify(self, policies: dict) -> bool: + + """Verify that all expected policy settings (see above) are present + for the top-level orgunit, and that the values of each setting are the + correct type and/or format. + + We do this verification because while Rego is good at checking for + policy requirements, it may yield incorrect results when expected + settings are missing or values are incorrect. This verification only + issues warnings. so we're not aborting if something is found to be + missing or incorrect. However, if warnings are issued, checks should be + done to determine what's wrong with the data returned by Google. + + :param dict policies: policy settings returned by get_policies(). + :return: True if all expected policy settings are found and the setting + values are correct types and format. + """ + + orgunit = self._top_orgunit + policies_ok = True + + expected_policy_settings = self._expectedPolicySettings + orgunit_policies = policies.get(orgunit) + + if not orgunit_policies: + log.warning('No policy settings found for orgunit: %s', orgunit) + return False + + missing_settings = {n for n in expected_policy_settings + if n not in orgunit_policies} + + if missing_settings: + log.warning('Setting(s) missing from %s orgunit: %s', + orgunit, + str(sorted(missing_settings))) + policies_ok = False + + for section, section_data in expected_policy_settings.items(): + + expected_settings = section_data['settings'] + settings = orgunit_policies.get(section) + if not settings: + continue + + invalid_settings = [] + + for setting_name, verifier in expected_settings.items(): + policy_value = settings.get(setting_name) + if policy_value is None or not verifier(policy_value): + invalid_settings.append(setting_name) + + if invalid_settings: + log.warning('Settings missing or values invalid for ' + 'orgunit %s, resource %s: %s', + orgunit, + section, + sorted(invalid_settings)) + + return policies_ok diff --git a/scubagoggles/provider.py b/scubagoggles/provider.py index 3d63e6d1..7d0c4c54 100644 --- a/scubagoggles/provider.py +++ b/scubagoggles/provider.py @@ -1,14 +1,22 @@ """ provider.py is where the GWS api calls are made. - """ + import warnings +from pathlib import Path from tqdm import tqdm -from scubagoggles.utils import create_subset_inverted_dict, create_key_to_list, merge_dicts +from googleapiclient.discovery import build + +from scubagoggles.auth import GwsAuth +from scubagoggles.policy_api import PolicyAPI +from scubagoggles.utils import create_subset_inverted_dict, \ + create_key_to_list, merge_dicts from scubagoggles.scuba_constants import ApiReference from scubagoggles.robust_dns import RobustDNSClient +# pylint: disable=too-many-instance-attributes + EVENTS = { 'calendar': [ 'CHANGE_CALENDAR_SETTING', @@ -75,7 +83,7 @@ } -SELECTORS = ["google", "selector1", "selector2"] +SELECTORS = ['google', 'selector1', 'selector2'] # For DKIM. # Unfortunately, hard-coded. Ideally, we'd be able to use an API to get # the selectors used programmatically, but it doesn't seem like there is @@ -93,57 +101,114 @@ # beginning of the domain name up to the first period # + class Provider: - ''' + """ Class for making the GWS api calls and tracking the results. - ''' + """ + + def __init__(self, + customer_id: str, + credentials_file: Path, + svc_account_email: str = None): - def __init__(self, services : dict, customer_id : str): - ''' - Initialize the Provider. + """Initialize the Provider. - :param services: a dict of service objects. :param customer_id: the ID of the customer to run against. - ''' - self.services = services - self.customer_id = customer_id - self.successful_calls = set() - self.unsuccessful_calls = set() - self.dns_client = RobustDNSClient() - self.domains = None + :param credentials_file: file specification of Google JSON-format + credentials. + :param svc_account_email: (optional) email address for the service + account. + """ + + self._gws_auth = GwsAuth(credentials_file, svc_account_email) + self._credentials = self._gws_auth.credentials + self._services = {} + self._customer_id = customer_id + self._successful_calls = set() + self._unsuccessful_calls = set() + self._dns_client = RobustDNSClient() + self._domains = None + + self._initialize_services() + self._top_ou = self.get_toplevel_ou() + + def __enter__(self): + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + + for resource in self._services.values(): + resource.close() + + @property + def successful_calls(self): + + """Returns names of methods successfully called. + + :rtype: set + """ + + return self._successful_calls + + @property + def unsuccessful_calls(self): + + """Returns names of methods unsuccessfully called. + + :rtype: set + """ + + return self._unsuccessful_calls + + def _initialize_services(self): + + service_list = (('reports', 'admin', 'reports_v1'), + ('directory', 'admin', 'directory_v1'), + ('groups', 'groupssettings', 'v1')) + + for service_data in service_list: + + name, service_name, version = service_data + + self._services[name] = build(service_name, + version, + cache_discovery = False, + credentials = self._credentials) def list_domains(self) -> list: - ''' + """ Return the customer's domains. Ensures that the domains API is called only once and that the domains used throughout the provider are consistent. - ''' - if self.domains is None: + """ + if self._domains is None: try: - self.domains = self.services['directory'].domains().list(customer=self.customer_id)\ - .execute()['domains'] - self.successful_calls.add(ApiReference.LIST_DOMAINS.value) + with self._services['directory'].domains() as domains: + self._domains = (domains.list(customer = self._customer_id) + .execute()['domains']) + self._successful_calls.add(ApiReference.LIST_DOMAINS.value) except Exception as exc: - self.domains = [] - warnings.warn(f"An exception was thrown by list_domains: {exc}", RuntimeWarning) - self.unsuccessful_calls.add(ApiReference.LIST_DOMAINS.value) - return self.domains + self._domains = [] + warnings.warn(f'An exception was thrown by list_domains: {exc}', RuntimeWarning) + self._unsuccessful_calls.add(ApiReference.LIST_DOMAINS.value) + return self._domains - def get_spf_records(self, domains: list) -> list: - ''' + def get_spf_records(self, domains: set) -> list: + """ Gets the SPF records for each domain in domains. :param domains: The list of domain names (strings). - ''' + """ results = [] n_low_confidence = 0 for domain in domains: - result = self.dns_client.query(domain) + result = self._dns_client.query(domain) if not result['HighConfidence']: n_low_confidence += 1 results.append({ - "domain": domain, - "rdata": result["Answers"], - "log": result["LogEntries"] + 'domain': domain, + 'rdata': result['Answers'], + 'log': result['LogEntries'] }) if n_low_confidence > 0: warnings.warn(f"get_spf_records: for {n_low_confidence} domain(s), \ @@ -153,19 +218,19 @@ def get_spf_records(self, domains: list) -> list: See ProviderSettingsExport.json under 'spf_records' for more details.", RuntimeWarning) return results - def get_dkim_records(self, domains : list) -> list: - ''' + def get_dkim_records(self, domains: set) -> list: + """ Gets the DKIM records for each domain in domains. :param domains: The list of domain names (strings). - ''' + """ results = [] n_low_confidence = 0 for domain in domains: - qnames = [f"{selector}._domainkey.{domain}" for selector in SELECTORS] + qnames = [f'{selector}._domainkey.{domain}' for selector in SELECTORS] log_entries = [] for qname in qnames: - result = self.dns_client.query(qname) + result = self._dns_client.query(qname) log_entries.extend(result['LogEntries']) if len(result['Answers']) == 0: # The DKIM record does not exist with this selector, we need to try again with @@ -177,9 +242,9 @@ def get_dkim_records(self, domains : list) -> list: if not result['HighConfidence']: n_low_confidence += 1 results.append({ - "domain": domain, - "rdata": result["Answers"], - "log": log_entries + 'domain': domain, + 'rdata': result['Answers'], + 'log': log_entries }) if n_low_confidence > 0: @@ -190,32 +255,32 @@ def get_dkim_records(self, domains : list) -> list: See ProviderSettingsExport.json under 'dkim_records' for more details.", RuntimeWarning) return results - def get_dmarc_records(self, domains : list) -> list: - ''' + def get_dmarc_records(self, domains: set) -> list: + """ Gets the DMARC records for each domain in domains. :param domains: The list of domain names (strings). - ''' + """ results = [] n_low_confidence = 0 for domain in domains: log_entries = [] - qname = f"_dmarc.{domain}" - result = self.dns_client.query(qname) + qname = f'_dmarc.{domain}' + result = self._dns_client.query(qname) log_entries.extend(result['LogEntries']) - if len(result["Answers"]) == 0: + if len(result['Answers']) == 0: # The domain does not exist. If the record is not available at the full domain # level, we need to check at the organizational domain level. - labels = domain.split(".") - org_domain = f"{labels[-2]}.{labels[-1]}" - result = self.dns_client.query(f"_dmarc.{org_domain}") + labels = domain.split('.') + org_domain = f'{labels[-2]}.{labels[-1]}' + result = self._dns_client.query(f'_dmarc.{org_domain}') log_entries.extend(result['LogEntries']) if not result['HighConfidence']: n_low_confidence += 1 results.append({ - "domain": domain, - "rdata": result["Answers"], - "log": log_entries + 'domain': domain, + 'rdata': result['Answers'], + 'log': log_entries }) if n_low_confidence > 0: warnings.warn(f"get_dmarc_records: for {n_low_confidence} domain(s), \ @@ -226,92 +291,99 @@ def get_dmarc_records(self, domains : list) -> list: return results def get_dnsinfo(self): - ''' + """ Gets DNS Information for Gmail baseline - ''' - output = {"domains": [], "spf_records": [], "dkim_records": [], "dmarc_records": []} + """ + output = {'domains': [], 'spf_records': [], 'dkim_records': [], 'dmarc_records': []} domains = {d['domainName'] for d in self.list_domains()} if len(domains) == 0: - warnings.warn("No domains found.", RuntimeWarning) + warnings.warn('No domains found.', RuntimeWarning) return output - output["domains"].extend(domains) + output['domains'].extend(domains) try: - output["spf_records"] = self.get_spf_records(domains) - self.successful_calls.add("get_spf_records") + output['spf_records'] = self.get_spf_records(domains) + self._successful_calls.add('get_spf_records') except Exception as exc: - output["spf_records"] = [] - warnings.warn(f"An exception was thrown by get_spf_records: {exc}", RuntimeWarning) - self.unsuccessful_calls.add("get_spf_records") + output['spf_records'] = [] + warnings.warn(f'An exception was thrown by get_spf_records: {exc}', RuntimeWarning) + self._unsuccessful_calls.add('get_spf_records') try: - output["dkim_records"] = self.get_dkim_records(domains) - self.successful_calls.add("get_dkim_records") + output['dkim_records'] = self.get_dkim_records(domains) + self._successful_calls.add('get_dkim_records') except Exception as exc: - output["dkim_records"] = [] - warnings.warn(f"An exception was thrown by get_dkim_records: {exc}", RuntimeWarning) - self.unsuccessful_calls.add("get_dkim_records") + output['dkim_records'] = [] + warnings.warn(f'An exception was thrown by get_dkim_records: {exc}', RuntimeWarning) + self._unsuccessful_calls.add('get_dkim_records') try: - output["dmarc_records"] = self.get_dmarc_records(domains) - self.successful_calls.add("get_dmarc_records") + output['dmarc_records'] = self.get_dmarc_records(domains) + self._successful_calls.add('get_dmarc_records') except Exception as exc: - output["dmarc_records"] = [] - warnings.warn(f"An exception was thrown by get_dmarc_records: {exc}", RuntimeWarning) - self.unsuccessful_calls.add("get_dmarc_records") + output['dmarc_records'] = [] + warnings.warn(f'An exception was thrown by get_dmarc_records: {exc}', RuntimeWarning) + self._unsuccessful_calls.add('get_dmarc_records') return output def get_super_admins(self) -> dict: - ''' + """ Gets the org unit/primary email of all super admins, using the directory API - ''' + """ + try: - response = self.services['directory'].users()\ - .list(customer=self.customer_id, query="isAdmin=True").execute() + with self._services['directory'].users() as users: + user_list = self._get_list(users, + 'users', + customer = self._customer_id, + query = 'isAdmin=True') + admins = [] - for user in response['users']: + for user in user_list: org_unit = user['orgUnitPath'] # strip out the leading '/' org_unit = org_unit[1:] if org_unit.startswith('/') else org_unit email = user['primaryEmail'] admins.append({'primaryEmail': email, 'orgUnitPath': org_unit}) - self.successful_calls.add(ApiReference.LIST_USERS.value) + self._successful_calls.add(ApiReference.LIST_USERS.value) return {'super_admins': admins} except Exception as exc: warnings.warn( - f"Exception thrown while getting super admins; outputs will be incorrect: {exc}", + f'Exception thrown while getting super admins; outputs will be incorrect: {exc}', RuntimeWarning ) - self.unsuccessful_calls.add(ApiReference.LIST_USERS.value) + self._unsuccessful_calls.add(ApiReference.LIST_USERS.value) return {'super_admins': []} def get_ous(self) -> dict: - ''' + """ Gets the organizational units using the directory API - ''' + """ try: - response = self.services['directory'].orgunits().list(customerId=self.customer_id)\ - .execute() - self.successful_calls.add(ApiReference.LIST_OUS.value) + with self._services['directory'].orgunits() as orgunits: + response = orgunits.list(customerId=self._customer_id).execute() + self._successful_calls.add(ApiReference.LIST_OUS.value) if 'organizationUnits' not in response: return {} return response except Exception as exc: warnings.warn( - f"Exception thrown while getting top level OU: {exc}", + f'Exception thrown while getting top level OU: {exc}', RuntimeWarning ) - self.unsuccessful_calls.add(ApiReference.LIST_OUS.value) + self._unsuccessful_calls.add(ApiReference.LIST_OUS.value) return {} def get_toplevel_ou(self) -> str: - ''' + """ Gets the tenant name using the directory API - ''' + """ try: - response = self.services['directory'].orgunits()\ - .list(customerId=self.customer_id, orgUnitPath='/', type='children').execute() + with self._services['directory'].orgunits() as orgunits: + response = orgunits.list(customerId = self._customer_id, + orgUnitPath = '/', + type = 'children').execute() # Because we set orgUnitPath to / and type to children, the API call will only # return the second-level OUs, meaning the parentOrgUnitId of any of the OUs returned # will point us to OU of the entire organization @@ -324,37 +396,37 @@ def get_toplevel_ou(self) -> str: # need to check if a setting change was made at the top-level # OU in the Rego; because no custom OUs have been created, any # changes have to apply to the top-level OU. - return "" + return '' parent_ou = response['organizationUnits'][0]['parentOrgUnitId'] - response = self.services['directory'].orgunits()\ - .get(customerId=self.customer_id, orgUnitPath=parent_ou).execute() + with self._services['directory'].orgunits() as orgunits: + response = orgunits.get(customerId = self._customer_id, + orgUnitPath = parent_ou).execute() ou_name = response['name'] - self.successful_calls.add(ApiReference.LIST_OUS.value) + self._successful_calls.add(ApiReference.LIST_OUS.value) return ou_name except Exception as exc: warnings.warn( - f"Exception thrown while getting top level OU: {exc}", + f'Exception thrown while getting top level OU: {exc}', RuntimeWarning ) - self.unsuccessful_calls.add(ApiReference.LIST_OUS.value) - return "Error Retrieving" - + self._unsuccessful_calls.add(ApiReference.LIST_OUS.value) + return 'Error Retrieving' def get_tenant_info(self) -> dict: - ''' + """ Gets the high-level tenant info using the directory API - ''' - primary_domain = "Error Retrieving" + """ + primary_domain = 'Error Retrieving' for domain in self.list_domains(): if domain['isPrimary']: primary_domain = domain['domainName'] return { 'domain': primary_domain, - 'topLevelOU': self.get_toplevel_ou() + 'topLevelOU': self._top_ou } def get_gws_logs(self, products: list, event: str) -> dict: - ''' + """ Gets the GWS admin audit logs with the specified event name. This function will also some parsing and filtering to ensure that an appropriate log event is matched to the appropriate product. @@ -364,13 +436,14 @@ def get_gws_logs(self, products: list, event: str) -> dict: :param products: a narrowed list of the products being invoked authenticating in auth.py :param event: the name of the specific event we are querying for. - ''' - - # Filter responses by org_unit id - response = (self.services['reports'].activities().list(userKey='all', - applicationName='admin', - eventName=event).execute()).get('items', []) + """ + with self._services['reports'].activities() as activities: + reports = self._get_list(activities, + 'items', + userKey = 'all', + applicationName = 'admin', + eventName = event) # Used for filtering duplicate events prod_to_app_name_values = { @@ -418,7 +491,7 @@ def get_gws_logs(self, products: list, event: str) -> dict: ) if event in dup_events: app_name = 'APPLICATION_NAME' - for report in response: + for report in reports: for events in report['events']: parameters = events.get('parameters', []) for parameter in parameters: @@ -427,65 +500,74 @@ def get_gws_logs(self, products: list, event: str) -> dict: for prod, app_values in subset_prod_to_app_name.items(): if param_val in app_values: products_to_logs[prod].append(report) - else: # no filtering append entire response to relevant product + else: + # no filtering append entire response to relevant product for prod in products: - products_to_logs[prod].extend(response) + products_to_logs[prod].extend(reports) except Exception as exc: warnings.warn( - f"An exception was thrown while getting the logs; outputs will be incorrect: {exc}", + f'An exception was thrown while getting the logs; outputs will be incorrect: {exc}', RuntimeWarning ) return products_to_logs def get_group_settings(self) -> dict: - ''' + """ Gets all of the group info using the directory API and group settings API - ''' + """ - group_service = self.services['groups'] - directory_service = self.services['directory'] + group_service = self._services['groups'] + directory_service = self._services['directory'] domains = {d['domainName'] for d in self.list_domains() if d['verified']} try: # get the group settings for each groups group_settings = [] - for domain in domains: - response = directory_service.groups().list(domain=domain).execute() - for group in response.get('groups'): - email = group.get('email') - group_settings.append(group_service.groups().get(groupUniqueId=email).execute()) - self.successful_calls.add(ApiReference.LIST_GROUPS.value) - self.successful_calls.add(ApiReference.GET_GROUP.value) + + with (directory_service.groups() as ds_groups, + group_service.groups() as gs_groups): + for domain in domains: + group_list = self._get_list(ds_groups, + 'groups', + domain = domain) + + group_settings = [gs_groups.get(groupUniqueId = group['email']) + .execute() for group in group_list] + + self._successful_calls.add(ApiReference.LIST_GROUPS.value) + self._successful_calls.add(ApiReference.GET_GROUP.value) return {'group_settings': group_settings} except Exception as exc: warnings.warn( - f"Exception thrown while getting group settings; outputs will be incorrect: {exc}", + f'Exception thrown while getting group settings; outputs will be incorrect: {exc}', RuntimeWarning ) - self.unsuccessful_calls.add(ApiReference.LIST_GROUPS.value) - self.unsuccessful_calls.add(ApiReference.GET_GROUP.value) + self._unsuccessful_calls.add(ApiReference.LIST_GROUPS.value) + self._unsuccessful_calls.add(ApiReference.GET_GROUP.value) return {'group_settings': []} def call_gws_providers(self, products: list, quiet) -> dict: - ''' + """ Calls the relevant GWS APIs to get the data we need for the baselines. Data such as the admin audit log, super admin users etc. :param products: list of product names to check :param quiet: suppress tqdm output - ''' + """ # create a inverse dictionary containing a mapping of event => list of products events_to_products = create_subset_inverted_dict(EVENTS, products) - events_to_products_bar = tqdm(events_to_products.items(), leave=False, disable=quiet) + events_to_products_bar = tqdm(events_to_products.items(), + leave = False, + disable = quiet) # main aggregator dict product_to_logs = create_key_to_list(products) product_to_items = {} ou_ids = set() - ou_ids.add("") # certain settings have no OU + ou_ids.add('') # certain settings have no OU try: # Add top level organization unit name - ou_ids.add(self.get_toplevel_ou()) + ou_ids.add(self._top_ou) # get all organizational unit data product_to_items['organizational_units'] = self.get_ous() for orgunit in product_to_items['organizational_units']['organizationUnits']: @@ -494,7 +576,7 @@ def call_gws_providers(self, products: list, quiet) -> dict: product_to_items['organizational_unit_names'] = list(ou_ids) except Exception as exc: warnings.warn( - f"Exception thrown while getting tenant data: {exc}", + f'Exception thrown while getting tenant data: {exc}', RuntimeWarning ) @@ -502,36 +584,44 @@ def call_gws_providers(self, products: list, quiet) -> dict: try: for event, product_list in events_to_products_bar: products = ', '.join(product_list) - bar_descr = f"Running Provider: Exporting {event} events for {products}..." + bar_descr = f'Running Provider: Exporting {event} events for {products}...' events_to_products_bar.set_description(bar_descr) # gets the GWS admin audit logs and merges them into product_to_logs # aggregator dict product_to_logs = merge_dicts( product_to_logs, - self.get_gws_logs(products=product_list, event=event) + self.get_gws_logs(products = product_list, event = event) ) - self.successful_calls.add(ApiReference.LIST_ACTIVITIES.value) + self._successful_calls.add(ApiReference.LIST_ACTIVITIES.value) except Exception as exc: - warnings.warn("Provider Exception thrown while getting the logs; "\ - f"outputs will be incorrect: {exc}", RuntimeWarning) - self.unsuccessful_calls.add(ApiReference.LIST_ACTIVITIES.value) + warnings.warn('Provider Exception thrown while getting the logs; ' + f'outputs will be incorrect: {exc}', RuntimeWarning) + self._unsuccessful_calls.add(ApiReference.LIST_ACTIVITIES.value) + + with PolicyAPI(self._gws_auth, self._top_ou) as policy_api: + policies = policy_api.get_policies() + policy_api.verify(policies) + + product_to_items['policies'] = policies # repacks the main aggregator into the original form # that the api returns the data in; under an 'items' key. # Then we put this key under a {product}_log key for the Rego code try: for product, logs in product_to_logs.items(): - key_name = f"{product}_logs" + key_name = f'{product}_logs' product_to_items[key_name] = {'items': logs} # get tenant metadata for report front page header product_to_items['tenant_info'] = self.get_tenant_info() - if 'gmail' in product_to_logs: # add dns info if gmail is being run + if 'gmail' in product_to_logs: + # add dns info if gmail is being run product_to_items.update(self.get_dnsinfo()) - if 'commoncontrols' in product_to_logs: # add list of super admins if CC is being run + if 'commoncontrols' in product_to_logs: + # add list of super admins if CC is being run product_to_items.update(self.get_super_admins()) if 'groups' in product_to_logs: @@ -539,7 +629,45 @@ def call_gws_providers(self, products: list, quiet) -> dict: except Exception as exc: warnings.warn( - f"Uncaught Exception thrown while getting other data: {exc}", + f'Uncaught Exception thrown while getting other data: {exc}', RuntimeWarning ) + + product_to_items['successful_calls'] = list(self._successful_calls) + product_to_items['unsuccessful_calls'] = list(self._unsuccessful_calls) + return product_to_items + + @staticmethod + def _get_list(resource, item: str, **list_args) -> list: + + """Given a Google Resource and the name of an item to retrieve, with + possible criteria, this helper method returns a list of results. + + The given Resource object must have both list() and list_next() + methods because the intention of this method is to handle the case + where the result is too large for Google to return in a single + request. + + :param Resource resource: a Google resource instance. + + :param str item: the name of the item to retrieve from the results. + This is a key in the returned dictionary. + + :param list_args: optional, keyword/value arguments to be passed + to the list() method. + + :return: list of requested items. + """ + + results = [] + request = resource.list(**list_args) + + while request is not None: + response = request.execute() + results += response.get(item, []) + # If all the results have been returned, list_next() will return + # None. + request = resource.list_next(request, response) + + return results diff --git a/scubagoggles/purge.py b/scubagoggles/purge.py new file mode 100644 index 00000000..d299c702 --- /dev/null +++ b/scubagoggles/purge.py @@ -0,0 +1,132 @@ +"""Implementation of ScubaGoggles conformance report directory purge. +""" + +import argparse +import datetime +import logging +import re +import shutil +import time + +from operator import itemgetter +from pathlib import Path + +from scubagoggles.user_setup import default_file_names, find_legacy_dir + +log = logging.getLogger(__name__) + + +def purge_reports(arguments: argparse.Namespace): + + """Main purge reports function - this calls other functions in this module. + + The arguments provide a keep count, and optionally the number of expiration + days. If the keep count is non-zero. the specified number of report + directories is kept. The remaining directories are deleted, unless the + number of expiration days is given. In that case, any remaining directory + newer than the expiration day count is excluded from being deleted. + + NOTE: this only affects ScubaGoggles report output directories in the + user's output directory, and only those having names starting with + "GWSBaselineConformance" (the default output folder name (i.e., prefix) + and ending with a timestamp. Any directory not named in this way is + untouched. + + :param arguments: arguments collected by the ArgumentParser. + """ + + log.info('GWS Conformance Report Directory Purge') + + config = arguments.user_config + output_dir = find_legacy_dir(config) or config.output_dir + + # Find all directories with generated names in the user's output directory. + # The returned directories are sorted by date (the oldest first). + + report_dir_data = find_report_directories(output_dir) + dir_count = len(report_dir_data) + + log.info(' Report directories: %d', dir_count) + + expire_days = arguments.expire + keep_count = arguments.keep + + # First, there's nothing to do if the number of directories is less or + # equal to the keep count. If there are more, we exclude the newest + # directories from consideration. + + if keep_count is None or dir_count <= keep_count: + return + + if keep_count < 0: + raise ValueError(f'? {keep_count} - negative keep count') + + report_dir_data = report_dir_data[0:dir_count - keep_count] + + if expire_days: + # The "expire days" value is the number of days back from the + # current date (i.e., now). Any older directory is considered + # "expired" and will be deleted (unless excluded by the keep + # count above). + + if expire_days < 0: + raise ValueError(f'? {expire_days} - negative expire days') + + days = datetime.timedelta(abs(expire_days)) + expiration_date = datetime.datetime.now() - days + expiration_time = time.mktime(expiration_date.timetuple()) + + report_dir_data = [s for s in report_dir_data + if s[1] < expiration_time] + + # What remains in the list are the directories to be deleted, after + # considering both the keep count and expire days values. We do not + # care if the directory could not be deleted for some reason - that + # is the user's issue. + + delete_count = len(report_dir_data) + log.info(' Report directories to be deleted: %d', delete_count) + log.debug(' %s', output_dir) + + for data in report_dir_data: + output_path = data[0] + log.debug(' %s', output_path.name) + shutil.rmtree(output_path, ignore_errors = True) + + return + + +def find_report_directories(user_directory: Path) -> list: + + """Finds ScubaGoggles report directories with generated names, and + returns them as a list sorted by modification date (the oldest first). + Each element in the returned list contains the Path instance of the + directory and the modification time as a tuple. + + :return: tuples containing the Path and modification time of each + directory found. + :rtype: list + """ + + result = [] + + report_root = Path(user_directory) + + if not report_root.exists(): + return result + + dir_prefix = default_file_names.output_folder_name + dirname_re = re.compile(f'(?i){dir_prefix}_' + r'\d{4}(?:_\d{2}){5}$') + + for report_path in report_root.glob(f'{dir_prefix}*'): + + if (not report_path.is_dir() + or not dirname_re.match(report_path.name)): + continue + + dir_data = (report_path, report_path.stat().st_mtime) + result.append(dir_data) + + result.sort(key = itemgetter(1)) + + return result diff --git a/scubagoggles/rego/Calendar.rego b/scubagoggles/rego/Calendar.rego new file mode 100644 index 00000000..01a41e80 --- /dev/null +++ b/scubagoggles/rego/Calendar.rego @@ -0,0 +1,447 @@ +package calendar + +import future.keywords +import data.utils +import data.utils.PolicyApiInUse + +LogEvents := utils.GetEvents("calendar_logs") + +CalendarEnabled(orgunit) := utils.AppEnabled(input.policies, "calendar", orgunit) + +################## +# GWS.CALENDAR.1 # +################## + +# +# Baseline GWS.CALENDAR.1.1 +#-- + +CalendarId1_1 := utils.PolicyIdWithSuffix("GWS.CALENDAR.1.1") + +LogMessage1_1 := "SHARING_OUTSIDE_DOMAIN" + +Check1_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage1_1, utils.TopLevelOU) + count(events) > 0 +} + +Check1_1_OK if {PolicyApiInUse} + +GetFriendlyValue1_1(Value) := "Share all information, but outsiders cannot change calendars" if { + Value in {"EXTERNAL_ALL_INFO_READ_ONLY", "READ_ONLY_ACCESS"} +} else := "Share all information, and outsiders can change calendars" if { + Value in {"EXTERNAL_ALL_INFO_READ_WRITE", "READ_WRITE_ACCESS"} +} else := "Share all information, and allow managing of calendars" if { + Value in {"EXTERNAL_ALL_INFO_READ_WRITE_MANAGE", "MANAGE_ACCESS"} +} else := Value + +SharingFmtMsg := "External sharing options for %s calendars is set to: %s" +NonComplianceMessage1_1(value) := sprintf(SharingFmtMsg, ["primary", value]) + +NonCompliantOUs1_1 contains { + "Name": OU, + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage1_1, OU) + # Ignore OUs without any events. We're already asserting that the + # top-level OU has at least one event; for all other OUs we assume + # they inherit from a parent OU if they have no events. + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "SHOW_ONLY_FREE_BUSY_INFORMATION" + LastEvent.NewValue != "INHERIT_FROM_PARENT" +} + +NonCompliantGroups1_1 contains { + "Name": Group, + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events := utils.FilterEventsGroup(LogEvents, LogMessage1_1, Group) + # Ignore Group without any events + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "SHOW_ONLY_FREE_BUSY_INFORMATION" + LastEvent.NewValue != "INHERIT_FROM_PARENT" +} + +NonCompliantOUs1_1 contains { + "Name": OU, + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1(primaryShare)) +} +if { + some OU, settings in input.policies + CalendarEnabled(OU) + section := settings.calendar_primary_calendar_max_allowed_external_sharing + primaryShare := section.maxAllowedExternalSharing + primaryShare != "EXTERNAL_FREE_BUSY_ONLY" +} + +tests contains { + "PolicyId": CalendarId1_1, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs.", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check1_1_OK +} + +tests contains { + "PolicyId": CalendarId1_1, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs1_1, NonCompliantGroups1_1), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_1, "NonCompliantGroups": NonCompliantGroups1_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check1_1_OK + Conditions := {count(NonCompliantOUs1_1) == 0, count(NonCompliantGroups1_1) == 0} + Status := (false in Conditions) == false +} +#-- + +# +# Baseline GWS.CALENDAR.1.2 +#-- + +CalendarId1_2 := utils.PolicyIdWithSuffix("GWS.CALENDAR.1.2") + +LogMessage1_2 := "SHARING_OUTSIDE_DOMAIN_FOR_SECONDARY_CALENDAR" + +Check1_2_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage1_2, utils.TopLevelOU) + count(events) > 0 +} + +Check1_2_OK if {PolicyApiInUse} + +GetFriendlyValue1_2(Value) := GetFriendlyValue1_1(Value) + +NonComplianceMessage1_2(value) := sprintf(SharingFmtMsg, ["secondary", value]) + +NonCompliantOUs1_2 contains { + "Name": utils.TopLevelOU, + "Value": NonComplianceMessage1_2(GetFriendlyValue1_2(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + Events := utils.FilterEventsNoOU(LogEvents, LogMessage1_2) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "SHOW_ONLY_FREE_BUSY_INFORMATION" + LastEvent.NewValue != "INHERIT_FROM_PARENT" +} + +NonCompliantOUs1_2 contains { + "Name": OU, + "Value": NonComplianceMessage1_2(GetFriendlyValue1_2(secondaryShare)) +} +if { + some OU, settings in input.policies + CalendarEnabled(OU) + section := settings.calendar_secondary_calendar_max_allowed_external_sharing + secondaryShare := section.maxAllowedExternalSharing + secondaryShare != "EXTERNAL_FREE_BUSY_ONLY" +} + +tests contains { + "PolicyId": CalendarId1_2, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check1_2_OK +} + +tests contains { + "PolicyId": CalendarId1_2, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs1_2, []), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_2}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check1_2_OK + Status := count(NonCompliantOUs1_2) == 0 +} +#-- + +################## +# GWS.CALENDAR.2 # +################## + +# +# Baseline GWS.CALENDAR.2.1 +#-- + +CalendarId2_1 := utils.PolicyIdWithSuffix("GWS.CALENDAR.2.1") + +LogMessage2_1 := "ENABLE_EXTERNAL_GUEST_PROMPT" + +Check2_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage2_1, utils.TopLevelOU) + count(events) > 0 +} + +Check2_1_OK if {PolicyApiInUse} + +NonComplianceMessage2_1(value) := sprintf("External Sharing Guest Prompt is %s", + [value]) + +NonCompliantOUs2_1 contains { + "Name": OU, + "Value": NonComplianceMessage2_1(utils.GetFriendlyEnabledValue(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage2_1, OU) + # Ignore OUs without any events. We're already asserting that the + # top-level OU has at least one event; for all other OUs we assume + # they inherit from a parent OU if they have no events. + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue == "false" +} + +NonCompliantGroups2_1 contains { + "Name": Group, + "Value": NonComplianceMessage2_1(utils.GetFriendlyEnabledValue(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events := utils.FilterEventsGroup(LogEvents, LogMessage2_1, Group) + # Ignore groups without any events + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue == "false" +} + +NonCompliantOUs2_1 contains { + "Name": OU, + "Value": NonComplianceMessage2_1(utils.GetFriendlyEnabledValue(extWarnPrompt)) +} +if { + some OU, settings in input.policies + CalendarEnabled(OU) + extWarnPrompt := settings.calendar_external_invitations.warnOnInvite + extWarnPrompt != true +} + +tests contains { + "PolicyId": CalendarId2_1, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check2_1_OK +} + +tests contains { + "PolicyId": CalendarId2_1, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs2_1, NonCompliantGroups2_1), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs2_1, "NonCompliantGroups": NonCompliantGroups2_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check2_1_OK + Conditions := {count(NonCompliantOUs2_1) == 0, count(NonCompliantGroups2_1) == 0} + Status := (false in Conditions) == false +} +#-- + +################## +# GWS.CALENDAR.3 # +################## + +# +# Baseline GWS.CALENDAR.3.1 +#-- + +CalendarId3_1 := utils.PolicyIdWithSuffix("GWS.CALENDAR.3.1") + +LogMessage3_1 := "ENABLE_EWS_INTEROP" + +Check3_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage3_1, utils.TopLevelOU) + count(events) > 0 +} + +Check3_1_OK if {PolicyApiInUse} + +NonComplianceMessage3_1(value) := sprintf("Calendar interoperation is %s", + [value]) + +NonCompliantOUs3_1 contains { + "Name": utils.TopLevelOU, + "Value": NonComplianceMessage3_1(utils.GetFriendlyEnabledValue(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + Events := utils.FilterEventsNoOU(LogEvents, LogMessage3_1) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "false" +} + +NonCompliantOUs3_1 contains { + "Name": OU, + "Value": NonComplianceMessage3_1(utils.GetFriendlyEnabledValue(interoperability)) +} +if { + some OU, settings in input.policies + CalendarEnabled(OU) + interoperability := settings.calendar_interoperability.enableInteroperability + interoperability != false +} + +tests contains { + "PolicyId": CalendarId3_1, + "Criticality": "Should", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check3_1_OK +} + +tests contains { + "PolicyId": CalendarId3_1, + "Criticality": "Should", + "ReportDetails": utils.ReportDetails(NonCompliantOUs3_1, []), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs3_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check3_1_OK + Status := count(NonCompliantOUs3_1) == 0 +} +#-- + +# +# Baseline GWS.CALENDAR.3.2 +#-- + +CalendarId3_2 := utils.PolicyIdWithSuffix("GWS.CALENDAR.3.2") + +tests contains { + "PolicyId": CalendarId3_2, + "Criticality": "Shall/Not-Implemented", + "ReportDetails": "Currently not able to be tested automatically; please manually check.", + "ActualValue": "", + "RequirementMet": false, + "NoSuchEvent": true +} +#-- + +################## +# GWS.CALENDAR.4 # +################## + +# +# Baseline GWS.CALENDAR.4.1 +#-- + +CalendarId4_1 := utils.PolicyIdWithSuffix("GWS.CALENDAR.4.1") + +LogMessage4_1 := "CalendarAppointmentSlotAdminSettingsProto payments_enabled" + +Check4_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage4_1, utils.TopLevelOU) + count(events) > 0 +} + +Check4_1_OK if {PolicyApiInUse} + +NonComplianceMessage4_1(value) := sprintf("Paid calendar appointments are %s", + [value]) + +NonCompliantOUs4_1 contains { + "Name": OU, + "Value": NonComplianceMessage4_1(utils.GetFriendlyEnabledValue(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage4_1, OU) + # Ignore OUs without any events. We're already asserting that the + # top-level OU has at least one event; for all other OUs we assume + # they inherit from a parent OU if they have no events. + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue == "true" +} + +NonCompliantOUs4_1 contains { + "Name": OU, + "Value": NonComplianceMessage4_1(utils.GetFriendlyEnabledValue(payments)) +} +if { + some OU, settings in input.policies + CalendarEnabled(OU) + payments := settings.calendar_appointment_schedules.enablePayments + payments != false +} + +tests contains { + "PolicyId": CalendarId4_1, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs.", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check4_1_OK +} + +tests contains { + "PolicyId": CalendarId4_1, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs4_1, []), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs4_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check4_1_OK + Status := count(NonCompliantOUs4_1) == 0 +} +#-- diff --git a/rego/Chat.rego b/scubagoggles/rego/Chat.rego similarity index 70% rename from rego/Chat.rego rename to scubagoggles/rego/Chat.rego index 73bebfab..d16e2859 100644 --- a/rego/Chat.rego +++ b/scubagoggles/rego/Chat.rego @@ -1,41 +1,71 @@ package chat -import data.utils import future.keywords +import data.utils +import data.utils.PolicyApiInUse LogEvents := utils.GetEvents("chat_logs") +ChatEnabled(orgunit) := utils.AppEnabled(input.policies, "chat", orgunit) + ############## # GWS.CHAT.1 # ############## # -# Baseline GWS.CHAT.1v0.3 +# Baseline GWS.CHAT.1 #-- -GetFriendlyValue1_1(Value) := "History is OFF" if { - Value == "true" -} else := "History is ON" if { - Value == "false" +ChatId1_1 := utils.PolicyIdWithSuffix("GWS.CHAT.1.1") + +LogMessage1_1 := "ChatArchivingProto chatsDefaultToOffTheRecord" + +Check1_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage1_1, utils.TopLevelOU) + count(events) > 0 +} + +Check1_1_OK if {PolicyApiInUse} + +# This is a weird one - for logging, history is off if the value is +# "true" (string), but for the policy API history is off if the value +# is false (boolean). + +GetFriendlyValue1_1(Value) := "OFF" if { + Value in {false, "true"} +} else := "ON" if { + Value in {true, "false"} } else := Value +NonComplianceMessage1_1(value) := sprintf("Default conversation history is set to: %s", + [value]) + NonCompliantOUs1_1 contains { "Name": OU, - "Value": concat(" ", [ - "Default conversation history is set to", - GetFriendlyValue1_1(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "ChatArchivingProto chatsDefaultToOffTheRecord", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage1_1, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "true" } +NonCompliantOUs1_1 contains { + "Name": OU, + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1(chatHistory)) +} if { + some OU, settings in input.policies + ChatEnabled(OU) + chatHistory := settings.chat_chat_history.historyOnByDefault + chatHistory == false +} + tests contains { - "PolicyId": "GWS.CHAT.1.1v0.3", + "PolicyId": ChatId1_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -43,47 +73,76 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - Events := utils.FilterEventsOU(LogEvents, "ChatArchivingProto chatsDefaultToOffTheRecord", utils.TopLevelOU) - count(Events) == 0 + not Check1_1_OK } tests contains { - "PolicyId": "GWS.CHAT.1.1v0.3", + "PolicyId": ChatId1_1, "Criticality": "Shall", - # Empty list in next line for non compliant groups, as this setting can't be changed at the group level + # Empty list in next line for non compliant groups, as this setting can't + # be changed at the group level "ReportDetails": utils.ReportDetails(NonCompliantOUs1_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_1}, "RequirementMet": Status, "NoSuchEvent": false } if { - Events := utils.FilterEventsOU(LogEvents, "ChatArchivingProto chatsDefaultToOffTheRecord", utils.TopLevelOU) - count(Events) > 0 + Check1_1_OK Status := count(NonCompliantOUs1_1) == 0 } #-- # -# Baseline GWS.CHAT.1.2v0.3 +# Baseline GWS.CHAT.1.2 #-- +ChatId1_2 := utils.PolicyIdWithSuffix("GWS.CHAT.1.2") + +LogMessage1_2 := "ChatArchivingProto allow_chat_archiving_setting_modification" + +Check1_2_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage1_2, utils.TopLevelOU) + count(events) > 0 +} + +Check1_2_OK if {PolicyApiInUse} + +GetFriendlyValue1_2(Value) := "Yes" if { + Value in {true, "true"} +} else := "No" if { + Value in {false, "false"} +} else := Value + +NonComplianceMessage1_2(value) := sprintf("Allow users to change their history setting is set to: %s", + [value]) + NonCompliantOUs1_2 contains { "Name": OU, - "Value": concat(" ", [ - "Allow users to change their history setting is set to", - LastEvent.NewValue - ]) + "Value": NonComplianceMessage1_2(GetFriendlyValue1_2(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "ChatArchivingProto allow_chat_archiving_setting_modification", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage1_2, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "true" } +NonCompliantOUs1_2 contains { + "Name": OU, + "Value": NonComplianceMessage1_2(GetFriendlyValue1_2(changeHistory)) +} if { + some OU, settings in input.policies + ChatEnabled(OU) + changeHistory := settings.chat_chat_history.allowUserModification + changeHistory != false +} + tests contains { - "PolicyId": "GWS.CHAT.1.2v0.3", + "PolicyId": ChatId1_2, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -91,14 +150,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - SettingName := "ChatArchivingProto allow_chat_archiving_setting_modification" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check1_2_OK } tests contains { - "PolicyId": "GWS.CHAT.1.2v0.3", + "PolicyId": ChatId1_2, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs1_2, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_2}, @@ -106,45 +164,68 @@ tests contains { "NoSuchEvent": false } if { - SettingName := "ChatArchivingProto allow_chat_archiving_setting_modification" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check1_2_OK Status := count(NonCompliantOUs1_2) == 0 } #-- - ############## # GWS.CHAT.2 # ############## # -# Baseline GWS.CHAT.2.1v0.3 +# Baseline GWS.CHAT.2.1 #-- + +ChatId2_1 := utils.PolicyIdWithSuffix("GWS.CHAT.2.1") + +LogMessage2_1 := "DynamiteFileSharingSettingsProto external_file_sharing_setting" + +Check2_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage2_1, utils.TopLevelOU) + count(events) > 0 +} + +Check2_1_OK if {PolicyApiInUse} + GetFriendlyValue2_1(Value) := "Allow all files" if { Value == "ALL_FILES" } else := "Images only" if { Value == "IMAGES_ONLY" +} else := "Unspecified" if { + Value == "FILE_SHARING_OPTION_UNSPECIFIED" } else := Value +NonComplianceMessage2_1(value) := sprintf("External file sharing is set to: %s", + [value]) + NonCompliantOUs2_1 contains { "Name": OU, - "Value": concat(" ", [ - "External filesharing is set to", - GetFriendlyValue2_1(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "DynamiteFileSharingSettingsProto external_file_sharing_setting", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage2_1, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue != "NO_FILES" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs2_1 contains { + "Name": OU, + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1(allowSharing)) +} if { + some OU, settings in input.policies + ChatEnabled(OU) + allowSharing := settings.chat_chat_file_sharing.externalFileSharing + allowSharing != "NO_FILES" +} + tests contains { - "PolicyId": "GWS.CHAT.2.1v0.3", + "PolicyId": ChatId2_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -152,14 +233,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - SettingName := "DynamiteFileSharingSettingsProto external_file_sharing_setting" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check2_1_OK } tests contains { - "PolicyId": "GWS.CHAT.2.1v0.3", + "PolicyId": ChatId2_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs2_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs2_1}, @@ -167,9 +247,7 @@ tests contains { "NoSuchEvent": false } if { - SettingName := "DynamiteFileSharingSettingsProto external_file_sharing_setting" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check2_1_OK Status := count(NonCompliantOUs2_1) == 0 } #-- @@ -179,30 +257,60 @@ if { ############## # -# Baseline GWS.CHAT.3.1v0.3 +# Baseline GWS.CHAT.3.1 #-- -GetFriendlyValue3_1(Value) := "History is OFF by default" if { - Value == "DEFAULT_OFF_THE_RECORD" -} else := "History is ALWAYS OFF" if { - Value == "ALWAYS_OFF_THE_RECORD" + +ChatId3_1 := utils.PolicyIdWithSuffix("GWS.CHAT.3.1") + +LogMessage3_1 := "RoomOtrSettingsProto otr_state" + +Check3_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage3_1, utils.TopLevelOU) + count(events) > 0 +} + +Check3_1_OK if {PolicyApiInUse} + +NonComplianceMessage3_1(value) := sprintf("Conversation history settings for spaces is set to: %s", + [value]) + +GetFriendlyValue3_1(Value) := "OFF by default" if { + Value in {"DEFAULT_HISTORY_OFF", "DEFAULT_OFF_THE_RECORD"} +} else := "ON by default" if { + Value == "DEFAULT_HISTORY_ON" +} else := "ALWAYS ON" if { + Value == "HISTORY_ALWAYS_ON" +} else := "Unspecified" if { + Value == "HISTORY_STATE_UNSPECIFIED" +} else := "ALWAYS OFF" if { + Value in {"HISTORY_ALWAYS_OFF", "ALWAYS_OFF_THE_RECORD"} } else := Value NonCompliantOUs3_1 contains { "Name": OU, - "Value": concat(" ", [ - "Conversation history settings for spaces is set to", - GetFriendlyValue3_1(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage3_1(GetFriendlyValue3_1(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "RoomOtrSettingsProto otr_state", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage3_1, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) not contains("DEFAULT_ON_THE_RECORD ALWAYS_ON_THE_RECORD", LastEvent.NewValue) } +NonCompliantOUs3_1 contains { + "Name": OU, + "Value": NonComplianceMessage3_1(GetFriendlyValue3_1(spaceHistory)) +} if { + some OU, settings in input.policies + ChatEnabled(OU) + spaceHistory := settings.chat_space_history.historyState + not spaceHistory in ["DEFAULT_HISTORY_ON", "HISTORY_ALWAYS_ON"] +} + tests contains { - "PolicyId": "GWS.CHAT.3.1v0.3", + "PolicyId": ChatId3_1, "Criticality": "Should", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -210,13 +318,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - Events := utils.FilterEventsOU(LogEvents, "RoomOtrSettingsProto otr_state", utils.TopLevelOU) - count(Events) == 0 + not Check3_1_OK } tests contains { - "PolicyId": "GWS.CHAT.3.1v0.3", + "PolicyId": ChatId3_1, "Criticality": "Should", "ReportDetails": utils.ReportDetails(NonCompliantOUs3_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs3_1}, @@ -224,8 +332,7 @@ tests contains { "NoSuchEvent": false } if { - Events := utils.FilterEventsOU(LogEvents, "RoomOtrSettingsProto otr_state", utils.TopLevelOU) - count(Events) > 0 + Check3_1_OK Status := count(NonCompliantOUs3_1) == 0 } #-- @@ -235,27 +342,51 @@ if { ############## # -# Baseline GWS.CHAT.4.1v0.3 +# Baseline GWS.CHAT.4.1 #-- + +ChatId4_1 := utils.PolicyIdWithSuffix("GWS.CHAT.4.1") + +LogMessage4_1 := "RestrictChatProto restrictChatToOrganization" + default NoSuchEvent4_1(_) := false NoSuchEvent4_1(TopLevelOU) := true if { - Events := utils.FilterEventsOU(LogEvents, "RestrictChatProto restrictChatToOrganization", TopLevelOU) + Events := utils.FilterEventsOU(LogEvents, LogMessage4_1, TopLevelOU) count(Events) == 0 } NoSuchEvent4_1(TopLevelOU) := true if { - Events := utils.FilterEventsOU(LogEvents, "RestrictChatProto externalChatRestriction", TopLevelOU) + Events := utils.FilterEventsOU(LogEvents, + "RestrictChatProto externalChatRestriction", + TopLevelOU) count(Events) == 0 } +Check4_1_OK if { + not PolicyApiInUse + not NoSuchEvent4_1(utils.TopLevelOU) +} + +Check4_1_OK if {PolicyApiInUse} + +GetFriendlyValue4_1(Value) := "all domains" if { + Value == "NO_RESTRICTION" +} else := "Unspecified" if { + Value == "RESTRICTION_UNSPECIFIED" +} else := Value + +NonComplianceMessage4_1(value) := sprintf("Allow external chat within: %s", + [value]) + NonCompliantOUs4_1 contains { "Name": OU, "Value": "External chat is enabled for all domains" } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events_A := utils.FilterEventsOU(LogEvents, "RestrictChatProto restrictChatToOrganization", OU) + Events_A := utils.FilterEventsOU(LogEvents, LogMessage4_1, OU) count(Events_A) > 0 LastEvent_A := utils.GetLastEvent(Events_A) LastEvent_A.NewValue != "DELETE_APPLICATION_SETTING" @@ -269,8 +400,20 @@ NonCompliantOUs4_1 contains { LastEvent_B.NewValue != "TRUSTED_DOMAINS" } +NonCompliantOUs4_1 contains { + "Name": OU, + "Value": NonComplianceMessage4_1(GetFriendlyValue4_1(externalRestrict)) +} if { + some OU, settings in input.policies + ChatEnabled(OU) + externalEnable := settings.chat_external_chat_restriction.allowExternalChat + externalEnable == true + externalRestrict := settings.chat_external_chat_restriction.externalChatRestriction + externalRestrict != "TRUSTED_DOMAINS" +} + tests contains { - "PolicyId": "GWS.CHAT.4.1v0.3", + "PolicyId": ChatId4_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -278,12 +421,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - NoSuchEvent4_1(utils.TopLevelOU) + not Check4_1_OK } tests contains { - "PolicyId": "GWS.CHAT.4.1v0.3", + "PolicyId": ChatId4_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs4_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs4_1}, @@ -291,7 +435,7 @@ tests contains { "NoSuchEvent": false } if { - not NoSuchEvent4_1(utils.TopLevelOU) + Check4_1_OK Status := count(NonCompliantOUs4_1) == 0 } #-- @@ -319,9 +463,11 @@ Chat5Warning := concat("", [ ]) # -# GWS.CHAT.5.1v0.3 +# GWS.CHAT.5.1 #-- +ChatId5_1 := utils.PolicyIdWithSuffix("GWS.CHAT.5.1") + GetFriendlyValue5_1(NonCompBooleans) := Description if { StatusMessages = [ "Content reporting for 1:1 direct messages is disabled.", @@ -433,7 +579,7 @@ NoSuchEvent5_1 := true if { } tests contains { - "PolicyId": "GWS.CHAT.5.1v0.3", + "PolicyId": ChatId5_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -446,7 +592,7 @@ if { } tests contains { - "PolicyId": "GWS.CHAT.5.1v0.3", + "PolicyId": ChatId5_1, "Criticality": "Shall", "ReportDetails": concat("
", [utils.ReportDetails(NonCompliantOUs5_1, []), Chat5Warning]), "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_1}, @@ -460,8 +606,11 @@ if { #-- # -# GWS.CHAT.5.2v0.3 +# GWS.CHAT.5.2 #-- + +ChatId5_2 := utils.PolicyIdWithSuffix("GWS.CHAT.5.2") + AllReportingCategories := { "system_violation: HARASSMENT", "system_violation: DISCRIMINATION", @@ -541,7 +690,7 @@ NonCompliantOUs5_2 contains { } tests contains { - "PolicyId": "GWS.CHAT.5.2v0.3", + "PolicyId": ChatId5_2, "Criticality": "Should", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -555,7 +704,7 @@ if { } tests contains { - "PolicyId": "GWS.CHAT.5.2v0.3", + "PolicyId": ChatId5_2, "Criticality": "Should", "ReportDetails": utils.ReportDetails(NonCompliantOUs5_2, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_2}, @@ -567,4 +716,4 @@ if { count(Events) > 0 Status := count(NonCompliantOUs5_2) == 0 } -#-- \ No newline at end of file +#-- diff --git a/scubagoggles/rego/Classroom.rego b/scubagoggles/rego/Classroom.rego new file mode 100644 index 00000000..86fcfbc5 --- /dev/null +++ b/scubagoggles/rego/Classroom.rego @@ -0,0 +1,509 @@ +package classroom + +import future.keywords +import data.utils +import data.utils.PolicyApiInUse + +LogEvents := utils.GetEvents("classroom_logs") + +ClassroomEnabled(orgunit) := utils.AppEnabled(input.policies, "classroom", orgunit) + +################### +# GWS.CLASSROOM.1 # +################### + +# +# Baseline GWS.CLASSROOM.1.1 +#-- + +ClassroomId1_1 := utils.PolicyIdWithSuffix("GWS.CLASSROOM.1.1") + +LogMessage1_1 := "ClassMembershipSettingProto who_can_join_classes" + +GetFriendlyValue1_1(Value) := "Users in your domain only" if { + Value in {"1", "ANYONE_IN_DOMAIN"} +} else := "Users in allowlisted domains" if { + Value in {"2", "ANYONE_IN_ALLOWLISTED_DOMAINS"} +} else := "Any Google Workspace user" if { + Value in {"3", "ANY_GOOGLE_WORKSPACE_USER"} +} else := "Any user" if { + Value in {"4", "ANYONE"} +} else := Value + +Check1_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage1_1, utils.TopLevelOU) + count(events) > 0 +} + +Check1_1_OK if {PolicyApiInUse} + +NonComplianceMessage1_1(value) := sprintf("Who can join classes in your domain is set to: %s", [value]) + +NonCompliantOUs1_1 contains { + "Name": OU, + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1(LastEvent.NewValue)) +} if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage1_1, OU) + # Ignore OUs without any events. We're already asserting that the + # top-level OU has at least one event; for all other OUs we assume + # they inherit from a parent OU if they have no events. + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "1" +} + +NonCompliantOUs1_1 contains { + "Name": OU, + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1(whoCanJoin)) +} if { + some OU, settings in input.policies + ClassroomEnabled(OU) + whoCanJoin := settings.classroom_class_membership.whoCanJoinClasses + whoCanJoin != "ANYONE_IN_DOMAIN" +} + +tests contains { + "PolicyId": ClassroomId1_1, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check1_1_OK +} + +tests contains { + "PolicyId": ClassroomId1_1, + "Criticality": "Shall", + # Empty list is for noncompliant groups as classroom settings can't be + # modified at the group level + "ReportDetails": utils.ReportDetails(NonCompliantOUs1_1, []), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check1_1_OK + Status := count(NonCompliantOUs1_1) == 0 +} +#-- + +# +# Baseline GWS.CLASSROOM.1.2 +#-- + +ClassroomId1_2 := utils.PolicyIdWithSuffix("GWS.CLASSROOM.1.2") + +LogMessage1_2 := "ClassMembershipSettingProto which_classes_can_users_join" + +GetFriendlyValue1_2(Value) := "Classes in your domain only" if { + Value in {"1", "CLASSES_IN_DOMAIN"} +} else := "Classes in allowlisted domains" if { + Value in {"2", "CLASSES_IN_ALLOWLISTED_DOMAINS"} +} else := "Any Google Workspace class" if { + Value in {"3", "ANY_GOOGLE_WORKSPACE_CLASS"} +} else := Value + +Check1_2_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage1_2, utils.TopLevelOU) + count(events) > 0 +} + +Check1_2_OK if {PolicyApiInUse} + +NonComplianceMessage1_2(value) := sprintf("Which classes can users in your domain join is set to: %s", [value]) + +NonCompliantOUs1_2 contains { + "Name": OU, + "Value": NonComplianceMessage1_2(GetFriendlyValue1_2(LastEvent.NewValue)) +} if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage1_2, OU) + # Ignore OUs without any events. We're already asserting that the + # top-level OU has at least one event; for all other OUs we assume + # they inherit from a parent OU if they have no events. + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "1" +} + +NonCompliantOUs1_2 contains { + "Name": OU, + "Value": NonComplianceMessage1_2(GetFriendlyValue1_2(whichClasses)) +} if { + some OU, settings in input.policies + ClassroomEnabled(OU) + whichClasses := settings.classroom_class_membership.whichClassesCanUsersJoin + whichClasses != "CLASSES_IN_DOMAIN" +} + +tests contains { + "PolicyId": ClassroomId1_2, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check1_2_OK +} + +tests contains { + "PolicyId": ClassroomId1_2, + "Criticality": "Shall", + # Empty list is for noncompliant groups as classroom settings can't be + # modified at the group level + "ReportDetails": utils.ReportDetails(NonCompliantOUs1_2, []), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_2}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check1_2_OK + Status := count(NonCompliantOUs1_2) == 0 +} +#-- + +################### +# GWS.CLASSROOM.2 # +################### + +# +# Baseline GWS.CLASSROOM.2.1 +#-- + +ClassroomId2_1 := utils.PolicyIdWithSuffix("GWS.CLASSROOM.2.1") + +LogMessage2_1 := "ApiDataAccessSettingProto api_access_enabled" + +GetFriendlyValue2_1(Value) := "unable" if { + Value in {"false", false} +} else := "able" if { + Value in {"true", true} +} else := Value + +Check2_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage2_1, utils.TopLevelOU) + count(events) > 0 +} + +Check2_1_OK if {PolicyApiInUse} + +NonComplianceMessage2_1(value) := sprintf("Users %s to authorize apps to %s", + [value, + "access their Google Classroom data"]) + +NonCompliantOUs2_1 contains { + "Name": OU, + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1(LastEvent.NewValue)) +} if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage2_1, OU) + # Ignore OUs without any events. We're already asserting that the + # top-level OU has at least one event; for all other OUs we assume + # they inherit from a parent OU if they have no events. + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "false" + LastEvent.NewValue != "DELETE_APPLICATION_SETTING" +} + +NonCompliantOUs2_1 contains { + "Name": OU, + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1(dataAccessEnabled)) +} if { + some OU, settings in input.policies + ClassroomEnabled(OU) + dataAccessEnabled := settings.classroom_api_data_access.enableApiAccess + dataAccessEnabled != false +} + +tests contains { + "PolicyId": ClassroomId2_1, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check2_1_OK +} + +tests contains { + "PolicyId": ClassroomId2_1, + "Criticality": "Shall", + # Empty list is for noncompliant groups as classroom settings can't be + # modified at the group level + "ReportDetails": utils.ReportDetails(NonCompliantOUs2_1, []), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs2_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check2_1_OK + Status := count(NonCompliantOUs2_1) == 0 +} +#-- + +################### +# GWS.CLASSROOM.3 # +################### + +# +# Baseline GWS.CLASSROOM.3.1 +#-- + +ClassroomId3_1 := utils.PolicyIdWithSuffix("GWS.CLASSROOM.3.1") + +LogMessage3_1 := "RosterImportSettingsProto sis_integrator" + +GetFriendlyValue3_1(Value) := "OFF" if { + Value in {"SIS_INTEGRATOR_NONE", "OFF"} +} else := "ON - CLEVER" if { + Value in {"SIS_INTEGRATOR_CLEVER", "ON_CLEVER"} +} else := Value + +Check3_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage3_1, utils.TopLevelOU) + count(events) > 0 +} + +Check3_1_OK if {PolicyApiInUse} + +NonComplianceMessage3_1(value) := sprintf("Roster import is set to: %s", [value]) + +NonCompliantOUs3_1 contains { + "Name": OU, + "Value": NonComplianceMessage3_1(GetFriendlyValue3_1(LastEvent.NewValue)) +} if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage3_1, OU) + # Ignore OUs without any events. We're already asserting that the + # top-level OU has at least one event; for all other OUs we assume + # they inherit from a parent OU if they have no events. + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "SIS_INTEGRATOR_NONE" + LastEvent.NewValue != "DELETE_APPLICATION_SETTING" +} + +NonCompliantOUs3_1 contains { + "Name": OU, + "Value": NonComplianceMessage3_1(GetFriendlyValue3_1(rosterImportOption)) +} if { + some OU, settings in input.policies + ClassroomEnabled(OU) + rosterImportOption := settings.classroom_roster_import.rosterImportOption + rosterImportOption != "OFF" +} + +tests contains { + "PolicyId": ClassroomId3_1, + "Criticality": "Should", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check3_1_OK +} + +tests contains { + "PolicyId": ClassroomId3_1, + "Criticality": "Should", + "ReportDetails": utils.ReportDetails(NonCompliantOUs3_1, []), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs3_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check3_1_OK + Status := count(NonCompliantOUs3_1) == 0 +} +#-- + +################### +# GWS.CLASSROOM.4 # +################### + +# +# Baseline GWS.CLASSROOM.4.1 +#-- + +ClassroomId4_1 := utils.PolicyIdWithSuffix("GWS.CLASSROOM.4.1") + +LogMessage4_1 := "StudentUnenrollmentSettingsProto who_can_unenroll_students" + +GetFriendlyValue4_1(Value) := "Students and teachers" if { + startswith(Value, "STUDENTS_AND_TEACHERS") == true +} else := "Only teachers" if { + Value in {"ONLY_TEACHERS_CAN_UNENROLL_STUDENTS", "TEACHERS_ONLY"} +} else := Value + +Check4_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage4_1, utils.TopLevelOU) + count(events) > 0 +} + +Check4_1_OK if {PolicyApiInUse} + +NonComplianceMessage4_1(value) := sprintf("Who can unenroll students from classes is set to: %s", [value]) + +NonCompliantOUs4_1 contains { + "Name": OU, + "Value": NonComplianceMessage4_1(GetFriendlyValue4_1(LastEvent.NewValue)) +} if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage4_1, OU) + # Ignore OUs without any events. We're already asserting that the + # top-level OU has at least one event; for all other OUs we assume + # they inherit from a parent OU if they have no events. + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "ONLY_TEACHERS_CAN_UNENROLL_STUDENTS" + LastEvent.NewValue != "DELETE_APPLICATION_SETTING" +} + +NonCompliantOUs4_1 contains { + "Name": OU, + "Value": NonComplianceMessage4_1(GetFriendlyValue4_1(whoCanUnenroll)) +} if { + some OU, settings in input.policies + ClassroomEnabled(OU) + whoCanUnenroll := settings.classroom_student_unenrollment.whoCanUnenrollStudents + whoCanUnenroll != "TEACHERS_ONLY" +} + +tests contains { + "PolicyId": ClassroomId4_1, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check4_1_OK +} + +tests contains { + "PolicyId": ClassroomId4_1, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs4_1, []), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs4_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check4_1_OK + Status := count(NonCompliantOUs4_1) == 0 +} +#-- + +################### +# GWS.CLASSROOM.5 # +################### + +# +# Baseline GWS.CLASSROOM.5.1 +#-- + +ClassroomId5_1 := utils.PolicyIdWithSuffix("GWS.CLASSROOM.5.1") + +LogMessage5_1 := "TeacherPermissionsSettingProto who_can_create_class" + +GetFriendlyValue5_1(Value) := "anyone in this domain" if { + Value in {"1", "ANYONE_IN_DOMAIN"} +} else := "all pending and verified teachers" if { + Value in {"2", "ALL_PENDING_AND_VERIFIED_TEACHERS"} +} else := Value + +Check5_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage5_1, utils.TopLevelOU) + count(events) > 0 +} + +Check5_1_OK if {PolicyApiInUse} + +NonComplianceMessage5_1(value) := sprintf("Who can create classes is set to: %s", [value]) + +NonCompliantOUs5_1 contains { + "Name": OU, + "Value": NonComplianceMessage5_1(GetFriendlyValue5_1(LastEvent.NewValue)) +} if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage5_1, OU) + # Ignore OUs without any events. We're already asserting that the + # top-level OU has at least one event; for all other OUs we assume + # they inherit from a parent OU if they have no events. + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "3" + LastEvent.NewValue != "DELETE_APPLICATION_SETTING" +} + +NonCompliantOUs5_1 contains { + "Name": OU, + "Value": NonComplianceMessage5_1(GetFriendlyValue5_1(whoCanCreate)) +} if { + some OU, settings in input.policies + ClassroomEnabled(OU) + whoCanCreate := settings.classroom_teacher_permissions.whoCanCreateClasses + whoCanCreate != "VERIFIED_TEACHERS_ONLY" +} + +tests contains { + "PolicyId": ClassroomId5_1, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check5_1_OK +} + +tests contains { + "PolicyId": ClassroomId5_1, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs5_1, []), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check5_1_OK + Status := count(NonCompliantOUs5_1) == 0 +} +#-- diff --git a/rego/Commoncontrols.rego b/scubagoggles/rego/Commoncontrols.rego similarity index 75% rename from rego/Commoncontrols.rego rename to scubagoggles/rego/Commoncontrols.rego index f333d029..eb4f54d7 100644 --- a/rego/Commoncontrols.rego +++ b/scubagoggles/rego/Commoncontrols.rego @@ -1,7 +1,8 @@ package commoncontrols -import data.utils import future.keywords +import data.utils +import data.utils.PolicyApiInUse # Note that we need to implement custom FilterEvents and SettingChangeEvents # rules here, instead of importing the standard ones from utils. @@ -100,9 +101,11 @@ LogEvents := utils.GetEvents("commoncontrols_logs") ######################## # -# Baseline GWS.COMMONCONTROLS.1.1v0.3 +# Baseline GWS.COMMONCONTROLS.1.1 #-- +CommonControlsId1_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.1.1") + # For 1.1, we need to assert three different things: # - MFA is allowed # - MFA is enforced @@ -111,6 +114,8 @@ LogEvents := utils.GetEvents("commoncontrols_logs") # Custom NoSuchEvent function needed as we're checking # three different settings simultaneously. No such event # if any are missing +default NoSuchEvent1_1 := false + NoSuchEvent1_1 := true if { Events := FilterEventsOU("ALLOW_STRONG_AUTHENTICATION", utils.TopLevelOU) count(Events) == 0 @@ -126,8 +131,6 @@ NoSuchEvent1_1 := true if { count(Events) == 0 } -default NoSuchEvent1_1 := false - GetFriendlyMethods(Value) := "Any" if { Value == "ANY" } else := "Any except verification codes via text, phone call" if { @@ -141,7 +144,8 @@ GetFriendlyMethods(Value) := "Any" if { NonCompliantOUs1_1 contains { "Name": OU, "Value": "Allow users to turn on 2-Step Verification is OFF" -} if { +} +if { some OU in utils.OUsWithEvents Events := FilterEventsOU("ALLOW_STRONG_AUTHENTICATION", OU) # Ignore OUs without any events. We're already asserting that the @@ -155,7 +159,8 @@ NonCompliantOUs1_1 contains { NonCompliantOUs1_1 contains { "Name": OU, "Value": "2-Step Verification Enforcement is OFF" -} if { +} +if { some OU in utils.OUsWithEvents Events := FilterEventsOU("ENFORCE_STRONG_AUTHENTICATION", OU) # Ignore OUs without any events. We're already asserting that the @@ -169,7 +174,8 @@ NonCompliantOUs1_1 contains { NonCompliantOUs1_1 contains { "Name": OU, "Value": concat("", ["Allowed methods is set to ", GetFriendlyMethods(LastEvent.NewValue)]) -} if { +} +if { some OU in utils.OUsWithEvents Events := FilterEventsOU("CHANGE_ALLOWED_TWO_STEP_VERIFICATION_METHODS", OU) # Ignore OUs without any events. We're already asserting that the @@ -184,7 +190,8 @@ NonCompliantOUs1_1 contains { NonCompliantGroups1_1 contains { "Name": Group, "Value": "Allow users to turn on 2-Step Verification is Off" -} if { +} +if { some Group in utils.GroupsWithEvents Events := FilterEventsGroup("ALLOW_STRONG_AUTHENTICATION", Group) # Ignore Groups without any events. @@ -196,7 +203,8 @@ NonCompliantGroups1_1 contains { NonCompliantGroups1_1 contains { "Name": Group, "Value": "2-Step Verification Enforcement is Off" -} if { +} +if { some Group in utils.GroupsWithEvents Events := FilterEventsGroup("ENFORCE_STRONG_AUTHENTICATION", Group) # Ignore Groups without any events. @@ -208,7 +216,8 @@ NonCompliantGroups1_1 contains { NonCompliantGroups1_1 contains { "Name": Group, "Value": concat("", ["Allowed methods is set to ", GetFriendlyMethods(LastEvent.NewValue)]) -} if { +} +if { some Group in utils.GroupsWithEvents Events := FilterEventsGroup("CHANGE_ALLOWED_TWO_STEP_VERIFICATION_METHODS", Group) # Ignore Groups without any events. @@ -219,7 +228,7 @@ NonCompliantGroups1_1 contains { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.1.1v0.3", + "PolicyId": CommonControlsId1_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -232,7 +241,7 @@ if { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.1.1v0.3", + "PolicyId": CommonControlsId1_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs1_1, NonCompliantGroups1_1), "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_1, "NonCompliantGroups": NonCompliantGroups1_1}, @@ -247,13 +256,16 @@ if { #-- # -# Baseline GWS.COMMONCONTROLS.1.2v0.3 +# Baseline GWS.COMMONCONTROLS.1.2 #-- +CommonControlsId1_2 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.1.2") + NonCompliantOUs1_2 contains { "Name": OU, "Value": concat("", ["New user enrollment period is set to ", LastEvent.NewValue]) -} if { +} +if { some OU in utils.OUsWithEvents Events := FilterEventsOU("CHANGE_TWO_STEP_VERIFICATION_ENROLLMENT_PERIOD_DURATION", OU) # Ignore OUs without any events. We're already asserting that the @@ -268,7 +280,8 @@ NonCompliantOUs1_2 contains { NonCompliantGroups1_2 contains { "Name": Group, "Value": concat("", ["New user enrollment period is set to ", LastEvent.NewValue]) -} if { +} +if { some Group in utils.GroupsWithEvents Events := FilterEventsGroup("CHANGE_TWO_STEP_VERIFICATION_ENROLLMENT_PERIOD_DURATION", Group) # Ignore groups without any events. @@ -279,7 +292,7 @@ NonCompliantGroups1_2 contains { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.1.2v0.3", + "PolicyId": CommonControlsId1_2, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -293,7 +306,7 @@ if { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.1.2v0.3", + "PolicyId": CommonControlsId1_2, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs1_2, NonCompliantGroups1_2), "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_2, "NonCompliantGroups": NonCompliantGroups1_2}, @@ -309,9 +322,11 @@ if { #-- # -# Baseline GWS.COMMONCONTROLS.1.3v0.3 +# Baseline GWS.COMMONCONTROLS.1.3 #-- +CommonControlsId1_3 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.1.3") + GetFriendlyValue1_3(Value) := "ON" if { Value == "ENABLE_USERS_TO_TRUST_DEVICE" } else := Value @@ -319,7 +334,8 @@ GetFriendlyValue1_3(Value) := "ON" if { NonCompliantOUs1_3 contains { "Name": OU, "Value": concat("", ["Allow user to trust the device is ", GetFriendlyValue1_3(LastEvent.NewValue)]) -} if { +} +if { some OU in utils.OUsWithEvents Events := FilterEventsOU("CHANGE_TWO_STEP_VERIFICATION_FREQUENCY", OU) # Ignore OUs without any events. We're already asserting that the @@ -334,7 +350,8 @@ NonCompliantOUs1_3 contains { NonCompliantGroups1_3 contains { "Name": Group, "Value": concat("", ["Allow user to trust the device is ", GetFriendlyValue1_3(LastEvent.NewValue)]) -} if { +} +if { some Group in utils.GroupsWithEvents Events := FilterEventsGroup("CHANGE_TWO_STEP_VERIFICATION_FREQUENCY", Group) # Ignore groups without any events. @@ -345,7 +362,7 @@ NonCompliantGroups1_3 contains { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.1.3v0.3", + "PolicyId": CommonControlsId1_3, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -359,7 +376,7 @@ if { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.1.3v0.3", + "PolicyId": CommonControlsId1_3, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs1_3, NonCompliantGroups1_3), "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_3, "NonCompliantGroups": NonCompliantGroups1_3}, @@ -375,13 +392,16 @@ if { #-- # -# Baseline GWS.COMMONCONTROLS.1.4v0.3 +# Baseline GWS.COMMONCONTROLS.1.4 #-- +CommonControlsId1_4 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.1.4") + NonCompliantOUs1_4 contains { "Name": OU, "Value": "Allowed methods is set to Any" -} if { +} +if { some OU in utils.OUsWithEvents Events := FilterEventsOU("CHANGE_ALLOWED_TWO_STEP_VERIFICATION_METHODS", OU) # Ignore OUs without any events. We're already asserting that the @@ -395,7 +415,8 @@ NonCompliantOUs1_4 contains { NonCompliantGroups1_4 contains { "Name": Group, "Value": "Allowed methods is set to Any" -} if { +} +if { some Group in utils.GroupsWithEvents Events := FilterEventsGroup("CHANGE_ALLOWED_TWO_STEP_VERIFICATION_METHODS", Group) # Ignore groups without any events. @@ -405,7 +426,7 @@ NonCompliantGroups1_4 contains { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.1.4v0.3", + "PolicyId": CommonControlsId1_4, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -419,7 +440,7 @@ if { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.1.4v0.3", + "PolicyId": CommonControlsId1_4, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs1_4, NonCompliantGroups1_4), "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_4, "NonCompliantGroups": NonCompliantGroups1_4}, @@ -437,15 +458,17 @@ if { ######################## # -# Baseline GWS.COMMONCONTROLS.2.1v0.3 +# Baseline GWS.COMMONCONTROLS.2.1 #-- +CommonControlsId2_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.2.1") + # This setting isn't controlled at the OU level, and in this case, # the logs don't even list an OU for the events. So in this case, # we just need to ensure the last event is compliant, we don't need # to check each OU. tests contains { - "PolicyId": "GWS.COMMONCONTROLS.2.1v0.3", + "PolicyId": CommonControlsId2_1, "Criticality": "Should", "ReportDetails": concat("", [ "No relevant event in the current logs. While we are unable ", @@ -464,7 +487,7 @@ if { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.2.1v0.3", + "PolicyId": CommonControlsId2_1, "Criticality": "Should", "ReportDetails": utils.ReportDetailsBoolean(Status), "ActualValue": {"TOGGLE_CAA_ENABLEMENT": LastEvent.NewValue}, @@ -484,17 +507,29 @@ if { ######################## # -# Baseline GWS.COMMONCONTROLS.3.1v0.3 +# Baseline GWS.COMMONCONTROLS.3.1 #-- +CommonControlsId3_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.3.1") + +LogMessage3_1 := "SsoPolicyProto challenge_selection_behavior" + +Check3_1_OK if { + events := utils.FilterEventsOU(LogEvents, LogMessage3_1, utils.TopLevelOU) + count(events) > 0 +} + +NonComplianceMessage3_1 := "Post Single Sign-on (SSO) verification is disabled." + # NOTE: this setting cannot be controlled at the group-level, # so only a check at the OU-level is implemented here. NonCompliantOUs3_1 contains { "Name": OU, - "Value": "Post-SSO verification is disabled" -} if { + "Value": NonComplianceMessage3_1 +} +if { some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "SsoPolicyProto challenge_selection_behavior", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage3_1, OU) # Ignore OUs without any events. We're already asserting that the # top-level OU has at least one event; for all other OUs we assume # they inherit from a parent OU if they have no events. @@ -505,7 +540,7 @@ NonCompliantOUs3_1 contains { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.3.1v0.3", + "PolicyId": CommonControlsId3_1, "Criticality": "Should", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -514,12 +549,11 @@ tests contains { } if { DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "SsoPolicyProto challenge_selection_behavior", utils.TopLevelOU) - count(Events) == 0 + not Check3_1_OK } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.3.1v0.3", + "PolicyId": CommonControlsId3_1, "Criticality": "Should", # Empty list on the next line as this setting can't be set at the group level "ReportDetails": utils.ReportDetails(NonCompliantOUs3_1, []), @@ -528,19 +562,21 @@ tests contains { "NoSuchEvent": false } if { - Events := utils.FilterEventsOU(LogEvents, "SsoPolicyProto challenge_selection_behavior", utils.TopLevelOU) - count(Events) > 0 + Check3_1_OK Status := count(NonCompliantOUs3_1) == 0 } #-- # -# Baseline GWS.COMMONCONTROLS.3.2v0.3 +# Baseline GWS.COMMONCONTROLS.3.2 #-- + +CommonControlsId3_2 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.3.2") + # TODO replace the following placeholder with actual implementation # SsoPolicyProto sso_profile_challenge_selection_behavior appears to the appropriate log event tests contains { - "PolicyId": "GWS.COMMONCONTROLS.3.2v0.3", + "PolicyId": CommonControlsId3_2, "Criticality": "Should/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -554,14 +590,26 @@ tests contains { ######################## # -# Baseline GWS.COMMONCONTROLS.4.1v0.3 +# Baseline GWS.COMMONCONTROLS.4.1 #-- +CommonControlsId4_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.4.1") + # NOTE: this setting cannot be controlled at the group-level, # so only a check at the OU-level is implemented here. GoodLimits := {"3600", "14400", "28800", "43200"} +LogMessage4_1 := "Session management settings - Session length in seconds" + +Check4_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage4_1, utils.TopLevelOU) + count(events) > 0 +} + +Check4_1_OK if {PolicyApiInUse} + IsGoodLimit(ActualLim) := true if { count({GoodLim | some GoodLim in GoodLimits; GoodLim == ActualLim}) > 0 } @@ -570,26 +618,31 @@ IsGoodLimit(ActualLim) := false if { count({GoodLim | some GoodLim in GoodLimits; GoodLim == ActualLim}) == 0 } +NonComplianceMessage4_1(Value) := sprintf("Web session duration: %s", + [Value]) + GetFriendlyValue4_1(Value) := "Session never expires" if { - Value == "63072000" + Value == 63072000 } else := "30 days" if { - Value == "2592000" + Value == 2592000 } else := "14 days" if { - Value == "1209600" + Value == 1209600 } else := "7 days" if { - Value == "604800" + Value == 604800 } else := "24 hours" if { - Value == "86400" + Value == 86400 } else := "20 hours" if { - Value == "72000" -} else := concat(" ", [Value, "seconds"]) + Value == 72000 +} else := sprintf("%d seconds", [Value]) NonCompliantOUs4_1 contains { "Name": OU, - "Value": concat("", ["Web session duration is set to ", GetFriendlyValue4_1(LastEvent.NewValue)]) -} if { + "Value": NonComplianceMessage4_1(GetFriendlyValue4_1(to_number(LastEvent.NewValue))) +} +if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "Session management settings - Session length in seconds", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage4_1, OU) # Ignore OUs without any events. We're already asserting that the # top-level OU has at least one event; for all other OUs we assume # they inherit from a parent OU if they have no events. @@ -599,8 +652,29 @@ NonCompliantOUs4_1 contains { not IsGoodLimit(LastEvent.NewValue) } -tests contains { - "PolicyId": "GWS.COMMONCONTROLS.4.1v0.3", +NonCompliantOUs4_1 contains { + "Name": OU, + "Value": NonComplianceMessage4_1(GetFriendlyValue4_1(durationSeconds)) +} +if { + multipliers := {"s": 1, "m": 60, "h": 3600} + # This is the requirement limit for session duration: + webSessionMax := 12 * multipliers["h"] + some OU, settings in input.policies + duration := settings.security_session_controls.webSessionDuration + result := regex.find_all_string_submatch_n(`(?i)^(\d+)([hms])$`, + duration, + 1) + firstMatch := result[0] + value := to_number(firstMatch[1]) + unit := firstMatch[2] + multiplier := multipliers[lower(unit)] + durationSeconds := value * multiplier + durationSeconds > webSessionMax +} + +tests contains { + "PolicyId": CommonControlsId4_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -608,14 +682,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - SettingName := "Session management settings - Session length in seconds" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check4_1_OK } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.4.1v0.3", + "PolicyId": CommonControlsId4_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs4_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs4_1}, @@ -623,9 +696,7 @@ tests contains { "NoSuchEvent": false } if { - SettingName := "Session management settings - Session length in seconds" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check4_1_OK Status := count(NonCompliantOUs4_1) == 0 } #-- @@ -638,15 +709,29 @@ if { # so only checks at the OU-level are implemented here. # -# Baseline GWS.COMMONCONTROLS.5.1v0.3 +# Baseline GWS.COMMONCONTROLS.5.1 #-- +CommonControlsId5_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.5.1") +LogMessage5_1 := "Password Management - Enforce strong password" +PasswordStrength := "STRONG" + +Check5_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage5_1, utils.TopLevelOU) + count(events) > 0 +} + +Check5_1_OK if {PolicyApiInUse} + NonCompliantOUs5_1 contains { "Name": OU, "Value": "Enforce strong password is OFF" -} if { +} +if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "Password Management - Enforce strong password", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage5_1, OU) # Ignore OUs without any events. We're already asserting that the # top-level OU has at least one event; for all other OUs we assume # they inherit from a parent OU if they have no events. @@ -656,8 +741,19 @@ NonCompliantOUs5_1 contains { LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs5_1 contains { + "Name": OU, + "Value": sprintf("Password strength is %s, not %s", + [CurrentStrength, PasswordStrength]) +} +if { + some OU, settings in input.policies + CurrentStrength := upper(settings.security_password.allowedStrength) + CurrentStrength != PasswordStrength +} + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.5.1v0.3", + "PolicyId": CommonControlsId5_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -665,35 +761,55 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - Events := utils.FilterEventsOU(LogEvents, "Password Management - Enforce strong password", utils.TopLevelOU) - count(Events) == 0 + not Check5_1_OK } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.5.1v0.3", + "PolicyId": CommonControlsId5_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs5_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_1}, "RequirementMet": Status, "NoSuchEvent": false -} if { - Events := utils.FilterEventsOU(LogEvents, "Password Management - Enforce strong password", utils.TopLevelOU) - count(Events) > 0 +} +if { + Check5_1_OK Status := count(NonCompliantOUs5_1) == 0 } #-- # -# Baseline GWS.COMMONCONTROLS.5.2v0.3 +# Baseline GWS.COMMONCONTROLS.5.2 #-- +CommonControlsId5_2 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.5.2") + +LogMessageMinPassword := "Password Management - Minimum password length" + +MinimumPasswordLength := 12 + +Check5_2_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessageMinPassword, utils.TopLevelOU) + count(events) > 0 +} + +Check5_2_OK if {PolicyApiInUse} + +FormatMessage5_2 := "Minimum password length: %d, less than %d" +NonComplianceMessage5_2(Value) := sprintf(FormatMessage5_2, + [Value, MinimumPasswordLength]) + NonCompliantOUs5_2 contains { "Name": OU, - "Value": concat("", ["Minimum password length is set to ", LastEvent.NewValue]) -} if { + "Value": NonComplianceMessage5_2(Minimum) +} +if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "Password Management - Minimum password length", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessageMinPassword, OU) # Ignore OUs without any events. We're already asserting that the # top-level OU has at least one event; for all other OUs we assume # they inherit from a parent OU if they have no events. @@ -701,11 +817,21 @@ NonCompliantOUs5_2 contains { LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue != "DELETE_APPLICATION_SETTING" Minimum := to_number(LastEvent.NewValue) - Minimum < 12 + Minimum < MinimumPasswordLength +} + +NonCompliantOUs5_2 contains { + "Name": OU, + "Value": NonComplianceMessage5_2(CurrentLength) +} +if { + some OU, settings in input.policies + CurrentLength := settings.security_password.minimumLength + CurrentLength < MinimumPasswordLength } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.5.2v0.3", + "PolicyId": CommonControlsId5_2, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -713,13 +839,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "Password Management - Minimum password length", utils.TopLevelOU) - count(Events) == 0 + not Check5_2_OK } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.5.2v0.3", + "PolicyId": CommonControlsId5_2, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs5_2, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_2}, @@ -727,22 +853,39 @@ tests contains { "NoSuchEvent": false } if { - Events := utils.FilterEventsOU(LogEvents, "Password Management - Minimum password length", utils.TopLevelOU) - count(Events) > 0 + Check5_2_OK Status := count(NonCompliantOUs5_2) == 0 } #-- # -# Baseline GWS.COMMONCONTROLS.5.3v0.3 +# Baseline GWS.COMMONCONTROLS.5.3 #-- +CommonControlsId5_3 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.5.3") + +SuggestedPasswordLength := 15 + +Check5_3_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessageMinPassword, utils.TopLevelOU) + count(events) > 0 +} + +Check5_3_OK if {PolicyApiInUse} + +FormatMessage5_3 := "Minimum password length: %d, recommended is at least %d" +NonComplianceMessage5_3(Value) := sprintf(FormatMessage5_3, + [Value, SuggestedPasswordLength]) + NonCompliantOUs5_3 contains { "Name": OU, - "Value": concat("", ["Minimum password length is set to ", LastEvent.NewValue]) -} if { + "Value": NonComplianceMessage5_3(Minimum) +} +if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "Password Management - Minimum password length", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessageMinPassword, OU) # Ignore OUs without any events. We're already asserting that the # top-level OU has at least one event; for all other OUs we assume # they inherit from a parent OU if they have no events. @@ -750,11 +893,21 @@ NonCompliantOUs5_3 contains { LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue != "DELETE_APPLICATION_SETTING" Minimum := to_number(LastEvent.NewValue) - Minimum < 15 + Minimum < SuggestedPasswordLength +} + +NonCompliantOUs5_3 contains { + "Name": OU, + "Value": NonComplianceMessage5_3(CurrentLength) +} +if { + some OU, settings in input.policies + CurrentLength := settings.security_password.minimumLength + CurrentLength < SuggestedPasswordLength } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.5.3v0.3", + "PolicyId": CommonControlsId5_3, "Criticality": "Should", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -762,13 +915,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "Password Management - Minimum password length", utils.TopLevelOU) - count(Events) == 0 + not Check5_3_OK } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.5.3v0.3", + "PolicyId": CommonControlsId5_3, "Criticality": "Should", "ReportDetails": utils.ReportDetails(NonCompliantOUs5_3, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_3}, @@ -776,21 +929,35 @@ tests contains { "NoSuchEvent": false } if { - Events := utils.FilterEventsOU(LogEvents, "Password Management - Minimum password length", utils.TopLevelOU) - count(Events) > 0 + Check5_3_OK Status := count(NonCompliantOUs5_3) == 0 } #-- # -# Baseline GWS.COMMONCONTROLS.5.4v0.3 +# Baseline GWS.COMMONCONTROLS.5.4 #-- + +CommonControlsId5_4 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.5.4") +LogMessage5_4 := "Password Management - Enforce password policy at next login" +NonComplianceMessage5_4 := "Enforce password policy at next sign-in is OFF" + +Check5_4_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage5_4, utils.TopLevelOU) + count(events) > 0 +} + +Check5_4_OK if {PolicyApiInUse} + NonCompliantOUs5_4 contains { "Name": OU, - "Value": "Enforce password policy at next sign-in is OFF" -} if { + "Value": NonComplianceMessage5_4 +} +if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "Password Management - Enforce password policy at next login", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage5_4, OU) # Ignore OUs without any events. We're already asserting that the # top-level OU has at least one event; for all other OUs we assume # they inherit from a parent OU if they have no events. @@ -800,8 +967,17 @@ NonCompliantOUs5_4 contains { LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs5_4 contains { + "Name": OU, + "Value": NonComplianceMessage5_4 +} +if { + some OU, settings in input.policies + settings.security_password.enforceRequirementsAtLogin != true +} + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.5.4v0.3", + "PolicyId": CommonControlsId5_4, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -809,14 +985,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - SettingName := "Password Management - Enforce password policy at next login" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check5_4_OK } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.5.4v0.3", + "PolicyId": CommonControlsId5_4, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs5_4, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_4}, @@ -824,22 +999,35 @@ tests contains { "NoSuchEvent": false } if { - SettingName := "Password Management - Enforce password policy at next login" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check5_4_OK Status := count(NonCompliantOUs5_4) == 0 } #-- # -# Baseline GWS.COMMONCONTROLS.5.5v0.3 +# Baseline GWS.COMMONCONTROLS.5.5 #-- + +CommonControlsId5_5 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.5.5") +LogMessage5_5 := "Password Management - Enable password reuse" +NonComplianceMessage5_5 := "Allow password reuse is ON" + +Check5_5_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage5_5, utils.TopLevelOU) + count(events) > 0 +} + +Check5_5_OK if {PolicyApiInUse} + NonCompliantOUs5_5 contains { "Name": OU, - "Value": "Allow password reuse is ON" -} if { + "Value": NonComplianceMessage5_5 +} +if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "Password Management - Enable password reuse", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage5_5, OU) # Ignore OUs without any events. We're already asserting that the # top-level OU has at least one event; for all other OUs we assume # they inherit from a parent OU if they have no events. @@ -849,8 +1037,17 @@ NonCompliantOUs5_5 contains { LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs5_5 contains { + "Name": OU, + "Value": NonComplianceMessage5_5 +} +if { + some OU, settings in input.policies + settings.security_password.allowReuse == true +} + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.5.5v0.3", + "PolicyId": CommonControlsId5_5, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -858,13 +1055,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - Events := utils.FilterEventsOU(LogEvents, "Password Management - Enable password reuse", utils.TopLevelOU) - count(Events) == 0 + not Check5_5_OK } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.5.5v0.3", + "PolicyId": CommonControlsId5_5, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs5_5, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_5}, @@ -872,21 +1069,34 @@ tests contains { "NoSuchEvent": false } if { - Events := utils.FilterEventsOU(LogEvents, "Password Management - Enable password reuse", utils.TopLevelOU) - count(Events) > 0 + Check5_5_OK Status := count(NonCompliantOUs5_5) == 0 } #-- # -# Baseline GWS.COMMONCONTROLS.5.6v0.3 +# Baseline GWS.COMMONCONTROLS.5.6 #-- + +CommonControlsId5_6 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.5.6") +LogMessage5_6 := "Password Management - Password reset frequency" + +Check5_6_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage5_6, utils.TopLevelOU) + count(events) > 0 +} + +Check5_6_OK if {PolicyApiInUse} + NonCompliantOUs5_6 contains { "Name": OU, "Value": concat(" ", ["Password reset frequency is", LastEvent.NewValue, "days"]) -} if { +} +if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "Password Management - Password reset frequency", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage5_6, OU) # Ignore OUs without any events. We're already asserting that the # top-level OU has at least one event; for all other OUs we assume # they inherit from a parent OU if they have no events. @@ -896,8 +1106,23 @@ NonCompliantOUs5_6 contains { LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs5_6 contains { + "Name": OU, + "Value": sprintf("Password reset frequency is %s", [passwordExpiration]) +} +if { + some OU, settings in input.policies + passwordExpiration := settings.security_password.expirationDuration + result := regex.find_all_string_submatch_n(`(?i)^(\d+)[hms]$`, + passwordExpiration, + -1) + firstMatch := result[0] + expirationValue := to_number(firstMatch[1]) + expirationValue != 0 +} + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.5.6v0.3", + "PolicyId": CommonControlsId5_6, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -905,13 +1130,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - Events := utils.FilterEventsOU(LogEvents, "Password Management - Password reset frequency", utils.TopLevelOU) - count(Events) == 0 + not Check5_6_OK } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.5.6v0.3", + "PolicyId": CommonControlsId5_6, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs5_6, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_6}, @@ -919,8 +1144,7 @@ tests contains { "NoSuchEvent": false } if { - Events := utils.FilterEventsOU(LogEvents, "Password Management - Password reset frequency", utils.TopLevelOU) - count(Events) > 0 + Check5_6_OK Status := count(NonCompliantOUs5_6) == 0 } #-- @@ -930,10 +1154,13 @@ if { ######################## # -# Baseline GWS.COMMONCONTROLS.6.1v0.3 +# Baseline GWS.COMMONCONTROLS.6.1 #-- + +CommonControlsId6_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.6.1") + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.6.1v0.3", + "PolicyId": CommonControlsId6_1, "Criticality": "Shall/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -943,10 +1170,13 @@ tests contains { #-- # -# Baseline GWS.COMMONCONTROLS.6.2v0.3 +# Baseline GWS.COMMONCONTROLS.6.2 #-- + +CommonControlsId6_2 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.6.2") + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.6.2v0.3", + "PolicyId": CommonControlsId6_2, "Prerequisites": ["directory/v1/users/list"], "Criticality": "Shall", "ReportDetails": concat("", [ @@ -970,10 +1200,13 @@ if { ######################## # -# Baseline GWS.COMMONCONTROLS.7.1v0.3 +# Baseline GWS.COMMONCONTROLS.7.1 #-- + +CommonControlsId7_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.7.1") + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.7.1v0.3", + "PolicyId": CommonControlsId7_1, "Criticality": "Shall/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -987,14 +1220,29 @@ tests contains { ######################## # -# Baseline GWS.COMMONCONTROLS.8.1v0.3 +# Baseline GWS.COMMONCONTROLS.8.1 #-- + +CommonControlsId8_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.8.1") +LogMessage8_1 := "AdminAccountRecoverySettingsProto Enable admin account recovery" +NonComplianceMessage8_1 := "Allow super admins to recover their account is ON" + +Check8_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage8_1, utils.TopLevelOU) + count(events) > 0 +} + +Check8_1_OK if {PolicyApiInUse} + NonCompliantOUs8_1 contains { "Name": OU, - "Value": "Allow super admins to recover their account is ON" -} if { + "Value": NonComplianceMessage8_1 +} +if { + not PolicyApiInUse some OU in utils.OUsWithEvents - SettingName := "AdminAccountRecoverySettingsProto Enable admin account recovery" + SettingName := LogMessage8_1 Events := utils.FilterEventsOU(LogEvents, SettingName, OU) # Ignore OUs without any events. We're already asserting that the # top-level OU has at least one event; for all other OUs we assume @@ -1007,10 +1255,12 @@ NonCompliantOUs8_1 contains { NonCompliantGroups8_1 contains { "Name": Group, - "Value": "Allow super admins to recover their account is ON" -} if { + "Value": NonComplianceMessage8_1 +} +if { + not PolicyApiInUse some Group in utils.GroupsWithEvents - SettingName := "AdminAccountRecoverySettingsProto Enable admin account recovery" + SettingName := LogMessage8_1 Events := utils.FilterEventsGroup(LogEvents, SettingName, Group) # Ignore groups without any events. count(Events) > 0 @@ -1019,8 +1269,17 @@ NonCompliantGroups8_1 contains { LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs8_1 contains { + "Name": OU, + "Value": NonComplianceMessage8_1 +} +if { + some OU, settings in input.policies + settings.security_super_admin_account_recovery.enableAccountRecovery == true +} + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.8.1v0.3", + "PolicyId": CommonControlsId8_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -1028,23 +1287,21 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - SettingName := "AdminAccountRecoverySettingsProto Enable admin account recovery" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check8_1_OK } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.8.1v0.3", + "PolicyId": CommonControlsId8_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs8_1, NonCompliantGroups8_1), "ActualValue": {"NonCompliantOUs": NonCompliantOUs8_1, "NonCompliantGroups": NonCompliantGroups8_1}, "RequirementMet": Status, "NoSuchEvent": false -} if { - SettingName := "AdminAccountRecoverySettingsProto Enable admin account recovery" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 +} +if { + Check8_1_OK Conditions := {count(NonCompliantOUs8_1) == 0, count(NonCompliantGroups8_1) == 0} Status := (false in Conditions) == false } @@ -1055,10 +1312,13 @@ tests contains { ######################## # -# Baseline GWS.COMMONCONTROLS.9.1v0.3 +# Baseline GWS.COMMONCONTROLS.9.1 #-- + +CommonControlsId9_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.9.1") + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.9.1v0.3", + "PolicyId": CommonControlsId9_1, "Criticality": "Shall/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -1068,10 +1328,13 @@ tests contains { #-- # -# Baseline GWS.COMMONCONTROLS.9.2v0.3 +# Baseline GWS.COMMONCONTROLS.9.2 #-- + +CommonControlsId9_2 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.9.2") + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.9.2v0.3", + "PolicyId": CommonControlsId9_2, "Criticality": "Should/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -1085,9 +1348,11 @@ tests contains { ######################### # -# Baseline GWS.COMMONCONTROLS.10.1v0.3 +# Baseline GWS.COMMONCONTROLS.10.1 #-- +CommonControlsId10_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.10.1") + # NOTE: App access cannot be controlled at the group/OU level # Step 1: Get the set of services that have either an API access allow or API access block event @@ -1155,11 +1420,11 @@ ReportDetails10_1(true) := "Requirement met." ReportDetails10_1(false) := concat("", [ "The following services allow access: ", - concat(", ", UnrestrictedServices10_2), "." + concat(", ", UnrestrictedServices10_1), "." ]) tests contains { - "PolicyId": "GWS.COMMONCONTROLS.10.1v0.3", + "PolicyId": CommonControlsId10_1, "Criticality": "Shall", "ReportDetails": concat("", [ "No API Access Allowed/Blocked events in the current logs. ", @@ -1177,7 +1442,7 @@ if { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.10.1v0.3", + "PolicyId": CommonControlsId10_1, "Criticality": "Shall", "ReportDetails": ReportDetails10_1(Status), "RequirementMet": Status, @@ -1195,8 +1460,11 @@ if { #-- # -# Baseline GWS.COMMONCONTROLS.10.2v0.3 +# Baseline GWS.COMMONCONTROLS.10.2 #-- + +CommonControlsId10_2 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.10.2") + # Identify services whose most recent event is an allow event UnrestrictedServices10_2 contains Service if { # Iterate through all services @@ -1222,7 +1490,7 @@ ReportDetails10_2(false) := concat("", [ ]) tests contains { - "PolicyId": "GWS.COMMONCONTROLS.10.2v0.3", + "PolicyId": CommonControlsId10_2, "Criticality": "SHALL", "ReportDetails": concat("", [ "No API Access Allowed/Blocked events in the current logs. ", @@ -1240,7 +1508,7 @@ if { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.10.2v0.3", + "PolicyId": CommonControlsId10_2, "Criticality": "Shall", "ReportDetails": ReportDetails10_2(Status), "RequirementMet": Status, @@ -1254,9 +1522,11 @@ if { #-- # -# Baseline GWS.COMMONCONTROLS.10.3v0.3 +# Baseline GWS.COMMONCONTROLS.10.3 #-- +CommonControlsId10_3 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.10.3") + # NOTE: this setting cannot be set at the group level. DomainOwnedAppAccessEvents contains { @@ -1279,7 +1549,8 @@ if { NonCompliantOUs10_3 contains { "Name": OU, "Value": "Trust internal apps is ON" -} if { +} +if { some OU in utils.OUsWithEvents Events := {Event | some Event in DomainOwnedAppAccessEvents; Event.OrgUnit == OU} # Ignore OUs without any events. We're already asserting that the @@ -1291,7 +1562,7 @@ NonCompliantOUs10_3 contains { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.10.3v0.3", + "PolicyId": CommonControlsId10_3, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -1305,7 +1576,7 @@ if { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.10.3v0.3", + "PolicyId": CommonControlsId10_3, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs10_3, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs10_3}, @@ -1320,9 +1591,11 @@ if { #-- # -# Baseline GWS.COMMONCONTROLS.10.4v0.3 +# Baseline GWS.COMMONCONTROLS.10.4 #-- +CommonControlsId10_4 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.10.4") + # NOTE: this setting cannot be set at the group level. UnconfiguredAppAccessEvents contains { @@ -1352,7 +1625,8 @@ GetFriendlyValue10_4(Value) := "Allow users to access any third-party apps" if { NonCompliantOUs10_4 contains { "Name": OU, "Value": concat("", ["Unconfigured third-party app access is set to ", GetFriendlyValue10_4(LastEvent.EventName)]) -} if { +} +if { some OU in utils.OUsWithEvents Events := {Event | some Event in UnconfiguredAppAccessEvents; Event.OrgUnit == OU} # Ignore OUs without any events. We're already asserting that the @@ -1364,7 +1638,7 @@ NonCompliantOUs10_4 contains { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.10.4v0.3", + "PolicyId": CommonControlsId10_4, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -1378,7 +1652,7 @@ if { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.10.4v0.3", + "PolicyId": CommonControlsId10_4, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs10_4, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs10_4}, @@ -1393,14 +1667,31 @@ if { #-- # -# Baseline GWS.COMMONCONTROLS.10.5v0.3 +# Baseline GWS.COMMONCONTROLS.10.5 #-- + +CommonControlsId10_5 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.10.5") + +EventName10_5 := "WEAK_PROGRAMMATIC_LOGIN_SETTINGS_CHANGED" + +Check10_5_OK if { + not PolicyApiInUse + events := FilterEventsOU(EventName10_5, utils.TopLevelOU) + count(events) > 0 +} + +Check10_5_OK if {PolicyApiInUse} + +NonComplianceMessage10_5 := "Users are allowed to manage access to less secure apps." + NonCompliantOUs10_5 contains { "Name": OU, - "Value": "Allow users to manage their access to less secure apps is ON" -} if { + "Value": NonComplianceMessage10_5 +} +if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := FilterEventsOU("WEAK_PROGRAMMATIC_LOGIN_SETTINGS_CHANGED", OU) + Events := FilterEventsOU(EventName10_5, OU) # Ignore OUs without any events. We're already asserting that the # top-level OU has at least one event; for all other OUs we assume # they inherit from a parent OU if they have no events. @@ -1418,10 +1709,12 @@ NonCompliantOUs10_5 contains { NonCompliantGroups10_5 contains { "Name": Group, - "Value": "Allow users to manage their access to less secure apps is ON" -} if { + "Value": NonComplianceMessage10_5 +} +if { + not PolicyApiInUse some Group in utils.GroupsWithEvents - Events := FilterEventsGroup("WEAK_PROGRAMMATIC_LOGIN_SETTINGS_CHANGED", Group) + Events := FilterEventsGroup(EventName10_5, Group) # Ignore groups without any events. count(Events) > 0 LastEvent := utils.GetLastEvent(Events) @@ -1429,8 +1722,18 @@ NonCompliantGroups10_5 contains { LastEvent.NewValue != "INHERIT_FROM_PARENT" } +NonCompliantOUs10_5 contains { + "Name": OU, + "Value": NonComplianceMessage10_5 +} +if { + some OU, settings in input.policies + lessSecure := settings.security_less_secure_apps.allowLessSecureApps + lessSecure != false +} + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.10.5v0.3", + "PolicyId": CommonControlsId10_5, "Criticality": "Should", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -1438,13 +1741,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - Events := FilterEventsOU("WEAK_PROGRAMMATIC_LOGIN_SETTINGS_CHANGED", utils.TopLevelOU) - count(Events) == 0 + not Check10_5_OK } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.10.5v0.3", + "PolicyId": CommonControlsId10_5, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs10_5, NonCompliantGroups10_5), "ActualValue": {"NonCompliantOUs": NonCompliantOUs10_5, "NonCompliantGroups": NonCompliantGroups10_5}, @@ -1452,8 +1755,7 @@ tests contains { "NoSuchEvent": false } if { - Events := FilterEventsOU("WEAK_PROGRAMMATIC_LOGIN_SETTINGS_CHANGED", utils.TopLevelOU) - count(Events) > 0 + Check10_5_OK Conditions := {count(NonCompliantOUs10_5) == 0, count(NonCompliantGroups10_5) == 0} Status := (false in Conditions) == false } @@ -1464,33 +1766,55 @@ if { ######################### # -# Baseline GWS.COMMONCONTROLS.11.1v0.3 +# Baseline GWS.COMMONCONTROLS.11.1 #-- +CommonControlsId11_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.11.1") + +LogMessage11_1_A := "Apps Access Setting Allowlist access" +LogMessage11_1_B := "Apps Access Setting allow_all_internal_apps" + +NonCompliancePrefix11_1 := "Users can install and run any" +NonComplianceMessage11_1(anyApp) := sprintf("%s app from the Marketplace.", + [NonCompliancePrefix11_1]) if { + anyApp +} else := sprintf("%s internal app, even if it's not allowlisted.", + [NonCompliancePrefix11_1]) + # For 11.1, we need to assert two different things: # - Users can only allow whitelisted apps # - Exceptions aren't allowed for internal apps # Custom NoSuchEvent function needed as we're checking # two different settings simultaneously. + +default NoSuchEvent11_1 := false + NoSuchEvent11_1 := true if { - Events := utils.FilterEventsOU(LogEvents, "Apps Access Setting Allowlist access", utils.TopLevelOU) + Events := utils.FilterEventsOU(LogEvents, LogMessage11_1_A, utils.TopLevelOU) count(Events) == 0 } NoSuchEvent11_1 := true if { - Events := utils.FilterEventsOU(LogEvents, "Apps Access Setting allow_all_internal_apps", utils.TopLevelOU) + Events := utils.FilterEventsOU(LogEvents, LogMessage11_1_B, utils.TopLevelOU) count(Events) == 0 } -default NoSuchEvent11_1 := false +Check11_1_OK if { + not PolicyApiInUse + not NoSuchEvent11_1 +} + +Check11_1_OK if {PolicyApiInUse} NonCompliantOUs11_1 contains { "Name": OU, - "Value": "Users can install and run any app from the Marketplace" -} if { + "Value": NonComplianceMessage11_1(true) +} +if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "Apps Access Setting Allowlist access", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage11_1_A, OU) # Ignore OUs without any events. We're already asserting that the # top-level OU has at least one event; for all other OUs we assume # they inherit from a parent OU if they have no events. @@ -1503,10 +1827,12 @@ NonCompliantOUs11_1 contains { NonCompliantGroups11_1 contains { "Name": Group, - "Value": "Users can install and run any app from the Marketplace" -} if { + "Value": NonComplianceMessage11_1(true) +} +if { + not PolicyApiInUse some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, "Apps Access Setting Allowlist access", Group) + Events := utils.FilterEventsGroup(LogEvents, LogMessage11_1_A, Group) # Ignore groups without any events. count(Events) > 0 LastEvent := utils.GetLastEvent(Events) @@ -1516,10 +1842,12 @@ NonCompliantGroups11_1 contains { NonCompliantOUs11_1 contains { "Name": OU, - "Value": "Users can install and run any internal app, even if it's not allowlisted" -} if { + "Value": NonComplianceMessage11_1(false) +} +if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "Apps Access Setting allow_all_internal_apps", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage11_1_B, OU) # Ignore OUs without any events. We're already asserting that the # top-level OU has at least one event; for all other OUs we assume # they inherit from a parent OU if they have no events. @@ -1531,10 +1859,12 @@ NonCompliantOUs11_1 contains { NonCompliantGroups11_1 contains { "Name": Group, - "Value": "Users can install and run any internal app, even if it's not allowlisted" -} if { + "Value": NonComplianceMessage11_1(false) +} +if { + not PolicyApiInUse some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, "Apps Access Setting allow_all_internal_apps", Group) + Events := utils.FilterEventsGroup(LogEvents, LogMessage11_1_B, Group) # Ignore groups without any events. count(Events) > 0 LastEvent := utils.GetLastEvent(Events) @@ -1542,8 +1872,30 @@ NonCompliantGroups11_1 contains { LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs11_1 contains { + "Name": OU, + "Value": NonComplianceMessage11_1(true) +} +if { + some OU, settings in input.policies + access := settings.workspace_marketplace_apps_access_options.accessLevel + not access in {"ALLOW_LISTED_APPS", "ALLOW_NONE"} +} + +NonCompliantOUs11_1 contains { + "Name": OU, + "Value": NonComplianceMessage11_1(false) +} +if { + some OU, settings in input.policies + access := settings.workspace_marketplace_apps_access_options.accessLevel + allowInternal := settings.workspace_marketplace_apps_access_options.allowAllInternalApps + access == "ALLOW_LISTED_APPS" + allowInternal != false +} + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.11.1v0.3", + "PolicyId": CommonControlsId11_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -1551,12 +1903,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - NoSuchEvent11_1 == true + not Check11_1_OK } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.11.1v0.3", + "PolicyId": CommonControlsId11_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs11_1, NonCompliantGroups11_1), "ActualValue": {"NonCompliantOUs": NonCompliantOUs11_1, "NonCompliantGroups": NonCompliantGroups11_1}, @@ -1564,7 +1917,7 @@ tests contains { "NoSuchEvent": false } if { - NoSuchEvent11_1 == false + Check11_1_OK Conditions := {count(NonCompliantOUs11_1) == 0, count(NonCompliantGroups11_1) == 0} Status := (false in Conditions) == false } @@ -1574,6 +1927,12 @@ if { # GWS.COMMONCONTROLS.12 # ######################### +LogMessage12_1 := "UserTakeoutSettingsProto User Takeout " + +Msg12_1 := "The following apps with individual admin control have Takeout enabled: %s" +NonComplianceMessage12_1(EnabledApps) := sprintf(Msg12_1, + [concat(", ", sort(EnabledApps))]) + #### Part 1: detecting service toggle events for OUs/groups *without* an individual admin control TakeoutServiceEnableEvents contains { "Timestamp": time.parse_rfc3339_ns(Item.id.time), @@ -1583,6 +1942,7 @@ TakeoutServiceEnableEvents contains { "Group": Group } if { + not PolicyApiInUse some Item in input.commoncontrols_logs.items some Event in Item.events Event.name == "TOGGLE_SERVICE_ENABLED" @@ -1598,10 +1958,14 @@ if { ServiceName == "Google Takeout" } +NonComplianceMessage12_1a := "Takeout is enabled for services without an individual admin control." + NonCompliantOUs12_1 contains { "Name": OU, - "Value": "Takeout is enabled for services without an individual admin control" -} if { + "Value": NonComplianceMessage12_1a +} +if { + not PolicyApiInUse some OU in utils.OUsWithEvents Events := { Event | some Event in TakeoutServiceEnableEvents; @@ -1618,8 +1982,10 @@ NonCompliantOUs12_1 contains { NonCompliantGroups12_1 contains { "Name": Group, - "Value": "Takeout is enabled for services without an individual admin control" -} if { + "Value": NonComplianceMessage12_1a +} +if { + not PolicyApiInUse some Group in utils.GroupsWithEvents Events := { Event | some Event in TakeoutServiceEnableEvents; @@ -1636,7 +2002,8 @@ Apps := {"Blogger", "Google Books", "Google Maps", "Google Pay", "Google Photos" "Google Play Console", "Timeline - Location History", "YouTube"} AppsAllowingTakoutOU contains App if { - Events := utils.FilterEventsNoOU(LogEvents, "UserTakeoutSettingsProto User Takeout ") + not PolicyApiInUse + Events := utils.FilterEventsNoOU(LogEvents, LogMessage12_1) some App in Apps Filtered := {Event | some Event in Events; Event.AppName == App; Event.OrgUnit == data.OrgUnit} # Note the data.OrgUnit. This means this @@ -1648,7 +2015,8 @@ AppsAllowingTakoutOU contains App if { } AppsAllowingTakoutGroup contains App if { - Events := utils.FilterEventsNoOU(LogEvents, "UserTakeoutSettingsProto User Takeout ") + not PolicyApiInUse + Events := utils.FilterEventsNoOU(LogEvents, LogMessage12_1) some App in Apps Filtered := {Event | some Event in Events; Event.AppName == App; Event.Group == data.Group} # Note the data.Group. This means this @@ -1661,13 +2029,12 @@ AppsAllowingTakoutGroup contains App if { NonCompliantOUs12_1 contains { "Name": OU, - "Value": concat("", [ - "The following apps with individual admin control have Takeout enabled: ", - concat(", ", EnabledApps) - ]) -} if { + "Value": NonComplianceMessage12_1(EnabledApps) +} +if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "UserTakeoutSettingsProto User Takeout ", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage12_1, OU) # Ignore OUs without any events. We're already asserting that the # top-level OU has at least one event; for all other OUs we assume # they inherit from a parent OU if they have no events. @@ -1678,13 +2045,13 @@ NonCompliantOUs12_1 contains { NonCompliantGroups12_1 contains { "Name": Group, - "Value": concat("", [ - "The following apps with individual admin control have Takeout enabled: ", - concat(", ", EnabledApps) - ]) -} if { + "Value": NonComplianceMessage12_1(EnabledApps) + +} +if { + not PolicyApiInUse some Group in utils.GroupsWithEvents - Events := utils.FilterEventsGroup(LogEvents, "UserTakeoutSettingsProto User Takeout ", Group) + Events := utils.FilterEventsGroup(LogEvents, LogMessage12_1, Group) # Ignore groups without any events. count(Events) > 0 EnabledApps := AppsAllowingTakoutGroup with data.Group as Group @@ -1692,11 +2059,13 @@ NonCompliantGroups12_1 contains { } # -# Baseline GWS.COMMONCONTROLS.12.1v0.3 +# Baseline GWS.COMMONCONTROLS.12.1 #-- +default NoSuchEvent12_1 := false + NoSuchEvent12_1 := true if { - Events := utils.FilterEventsOU(LogEvents, "UserTakeoutSettingsProto User Takeout ", utils.TopLevelOU) + Events := utils.FilterEventsOU(LogEvents, LogMessage12_1, utils.TopLevelOU) count(Events) == 0 } @@ -1705,10 +2074,44 @@ NoSuchEvent12_1 := true if { count(Events) == 0 } -default NoSuchEvent12_1 := false +CommonControlsId12_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.12.1") + +Check12_1_OK if { + not PolicyApiInUse + not NoSuchEvent12_1 +} + +Check12_1_OK if {PolicyApiInUse} + +Takeout := {"blogger": "Blogger", + "books": "Google Books", + "location_history": "Timeline - Location History", + "maps": "Google Maps", + "pay": "Google Pay", + "photos": "Google Photos", + "play": "Google Play", + "play_console": "Google Play Console", + "youtube": "YouTube"} + +NonCompliantOUs12_1 contains { + "Name": OU, + "Value": NonComplianceMessage12_1(EnabledApps) + +} +if { + some OU, settings in input.policies + utils.AppEnabled(input.policies, "takeout", OU) + EnabledApps :=[value + | some key, value in Takeout + section := sprintf("%s_user_takeout", [key]) + section in object.keys(settings) + state := settings[section].takeoutStatus + state != "DISABLED"] + count(EnabledApps) > 0 +} tests contains { - "PolicyId": "GWS.COMMONCONTROLS.12.1v0.3", + "PolicyId": CommonControlsId12_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -1716,12 +2119,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - NoSuchEvent12_1 == true + not Check12_1_OK } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.12.1v0.3", + "PolicyId": CommonControlsId12_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs12_1, NonCompliantGroups12_1), "ActualValue": {"NonCompliantOUs": NonCompliantOUs12_1, "NonCompliantGroups": NonCompliantGroups12_1}, @@ -1729,7 +2133,7 @@ tests contains { "NoSuchEvent": false } if { - NoSuchEvent12_1 == false + Check12_1_OK Conditions := {count(NonCompliantOUs12_1) == 0, count(NonCompliantGroups12_1) == 0} Status := (false in Conditions) == false } @@ -1740,10 +2144,13 @@ if { ######################### # -# Baseline GWS.COMMONCONTROLS.13.1v0.3 +# Baseline GWS.COMMONCONTROLS.13.1 #-- + +CommonControlsId13_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.13.1") + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.13.1v0.3", + "PolicyId": CommonControlsId13_1, "Criticality": "Shall/Not-Implemented", "ReportDetails": concat("", [ "Results for GWS.COMMONCONTROLS.13 are listed in the ", @@ -1760,10 +2167,13 @@ tests contains { ######################### # -# Baseline GWS.COMMONCONTROLS.14.1v0.3 +# Baseline GWS.COMMONCONTROLS.14.1 #-- + +CommonControlsId14_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.14.1") + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.14.1v0.3", + "PolicyId": CommonControlsId14_1, "Criticality": "Shall/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -1773,10 +2183,13 @@ tests contains { #-- # -# Baseline GWS.COMMONCONTROLS.14.2v0.3 +# Baseline GWS.COMMONCONTROLS.14.2 #-- + +CommonControlsId14_2 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.14.2") + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.14.2v0.3", + "PolicyId": CommonControlsId14_2, "Criticality": "Shall/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -1790,10 +2203,13 @@ tests contains { ######################### # -# Baseline GWS.COMMONCONTROLS.15.1v0.3 +# Baseline GWS.COMMONCONTROLS.15.1 #-- + +CommonControlsId15_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.15.1") + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.15.1v0.3", + "PolicyId": CommonControlsId15_1, "Criticality": "Shall/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -1802,10 +2218,11 @@ tests contains { } #-- - # -# Baseline GWS.COMMONCONTROLS.15.2v0.3 +# Baseline GWS.COMMONCONTROLS.15.2 #-- +CommonControlsId15_2 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.15.2") + NonCompliantOUs15_2 contains { "Name": OU, "Value": "Data processing in the region selected for data at rest is set to OFF" @@ -1834,7 +2251,7 @@ NonCompliantGroups15_2 contains { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.15.2v0.3", + "PolicyId": CommonControlsId15_2, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -1849,7 +2266,7 @@ if { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.15.2v0.3", + "PolicyId": CommonControlsId15_2, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs15_2, NonCompliantGroups15_2), "ActualValue": {"NonCompliantOUs": NonCompliantOUs15_2, "NonCompliantGroups": NonCompliantGroups15_2}, @@ -1870,15 +2287,18 @@ if { #-- # -# Baseline GWS.COMMONCONTROLS.15.3v0.3 +# Baseline GWS.COMMONCONTROLS.15.3 #-- +CommonControlsId15_3 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.15.3") + # NOTE: This setting cannot be controlled at the group level NonCompliantOUs15_3 contains { "Name": OU, "Value": "Supplemental data storage is set to Russian Federation" -} if { +} +if { some OU in utils.OUsWithEvents Events := utils.FilterEventsOU(LogEvents, "CHANGE_DATA_LOCALIZATION_FOR_RUSSIA", OU) # Ignore OUs without any events. We're already asserting that the @@ -1890,7 +2310,7 @@ NonCompliantOUs15_3 contains { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.15.3v0.3", + "PolicyId": CommonControlsId15_3, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -1904,7 +2324,7 @@ if { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.15.3v0.3", + "PolicyId": CommonControlsId15_3, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs15_3, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs15_3}, @@ -1919,15 +2339,18 @@ if { #-- # -# Baseline GWS.COMMONCONTROLS.16.1v0.3 +# Baseline GWS.COMMONCONTROLS.16.1 #-- +CommonControlsId16_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.16.1") + # NOTE: This setting cannot be controlled at the group level NonCompliantOUs16_1 contains { "Name": OU, "Value": "Access to additional services without individual control is turned on" -} if { +} +if { some OU in utils.OUsWithEvents # Note that this setting requires the custom ToggleServiceEvents rule. # Filter based on the service name of the event, otherwise all events are returned. @@ -1945,7 +2368,7 @@ NonCompliantOUs16_1 contains { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.16.1v0.3", + "PolicyId": CommonControlsId16_1, "Criticality": "Should", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -1964,7 +2387,7 @@ if { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.16.1v0.3", + "PolicyId": CommonControlsId16_1, "Criticality": "Should", "ReportDetails": utils.ReportDetails(NonCompliantOUs16_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs16_1}, @@ -1984,13 +2407,16 @@ if { #-- # -# Baseline GWS.COMMONCONTROLS.16.2v0.3 +# Baseline GWS.COMMONCONTROLS.16.2 #-- +CommonControlsId16_2 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.16.2") + NonCompliantOUs16_2 contains { "Name": OU, "Value": "Service status is ON" -} if { +} +if { some OU in utils.OUsWithEvents # Note that this setting requires the custom ToggleServiceEvents rule. # Filter based on the service name of the event, otherwise all events are returned. @@ -2013,7 +2439,8 @@ NonCompliantOUs16_2 contains { NonCompliantGroups16_2 contains { "Name": Group, "Value": "Service status is ON" -} if { +} +if { some Group in utils.GroupsWithEvents # Note that this setting requires the custom ToggleServiceEvents rule. Events := { @@ -2028,7 +2455,7 @@ NonCompliantGroups16_2 contains { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.16.2v0.3", + "PolicyId": CommonControlsId16_2, "Criticality": "Should", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -2047,13 +2474,14 @@ if { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.16.2v0.3", + "PolicyId": CommonControlsId16_2, "Criticality": "Should", "ReportDetails": utils.ReportDetails(NonCompliantOUs16_2, NonCompliantGroups16_2), "ActualValue": {"NonCompliantOUs": NonCompliantOUs16_2, "NonCompliantGroups": NonCompliantGroups16_2}, "RequirementMet": Status, "NoSuchEvent": false -} if { +} +if { # This rule should execute only when log events exist Events := { Event | some Event in ToggleServiceEvents; @@ -2071,15 +2499,18 @@ tests contains { #-- # -# Baseline GWS.COMMONCONTROLS.17.1v0.3 +# Baseline GWS.COMMONCONTROLS.17.1 #-- +CommonControlsId17_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.17.1") + # NOTE: This setting cannot be controlled at the group level NonCompliantOUs17_1 contains { "Name": OU, "Value": "Require multi party approval for sensitive admin actions is DISABLED" -} if { +} +if { some OU in utils.OUsWithEvents Events := utils.FilterEventsOU(LogEvents, "Multi Party Approval (MPA) Control Multi Party Approval Control", OU) # Ignore OUs without any events. We're already asserting that the @@ -2091,7 +2522,7 @@ NonCompliantOUs17_1 contains { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.17.1v0.3", + "PolicyId": CommonControlsId17_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -2106,7 +2537,7 @@ if { } tests contains { - "PolicyId": "GWS.COMMONCONTROLS.17.1v0.3", + "PolicyId": CommonControlsId17_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs17_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs17_1}, @@ -2128,23 +2559,13 @@ if { # TODO access actual API capabilities for DLP, the following checks are placeholders. # -# Baseline GWS.COMMONCONTROLS.18.1v0.3 -#-- -tests contains { - "PolicyId": "GWS.COMMONCONTROLS.18.1v0.3", - "Criticality": "Shall/Not-Implemented", - "ReportDetails": "Currently not able to be tested automatically; please manually check.", - "ActualValue": "", - "RequirementMet": false, - "NoSuchEvent": true -} +# Baseline GWS.COMMONCONTROLS.18.1 #-- -# -# Baseline GWS.COMMONCONTROLS.18.1v0.3 -#-- +CommonControlsId18_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.18.1") + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.18.1v0.3", + "PolicyId": CommonControlsId18_1, "Criticality": "Shall/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -2154,10 +2575,13 @@ tests contains { #-- # -# Baseline GWS.COMMONCONTROLS.18.2v0.3 +# Baseline GWS.COMMONCONTROLS.18.2 #-- + +CommonControlsId18_2 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.18.2") + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.18.2v0.3", + "PolicyId": CommonControlsId18_2, "Criticality": "Shall/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -2167,10 +2591,13 @@ tests contains { #-- # -# Baseline GWS.COMMONCONTROLS.18.3v0.3 +# Baseline GWS.COMMONCONTROLS.18.3 #-- + +CommonControlsId18_3 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.18.3") + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.18.3v0.3", + "PolicyId": CommonControlsId18_3, "Criticality": "Shall/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -2180,14 +2607,17 @@ tests contains { #-- # -# Baseline GWS.COMMONCONTROLS.18.4v0.3 +# Baseline GWS.COMMONCONTROLS.18.4 #-- + +CommonControlsId18_4 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.18.4") + tests contains { - "PolicyId": "GWS.COMMONCONTROLS.18.4v0.3", + "PolicyId": CommonControlsId18_4, "Criticality": "Should/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", "RequirementMet": false, "NoSuchEvent": true } -#-- \ No newline at end of file +#-- diff --git a/scubagoggles/rego/Drive.rego b/scubagoggles/rego/Drive.rego new file mode 100644 index 00000000..0ecf7955 --- /dev/null +++ b/scubagoggles/rego/Drive.rego @@ -0,0 +1,1693 @@ +package drive + +import future.keywords +import data.utils +import data.utils.PolicyApiInUse + +LogEvents := utils.GetEvents("drive_logs") + +DriveEnabled(orgunit) := utils.AppEnabled(input.policies, "drive_and_docs", orgunit) + +################### +# GWS.DRIVEDOCS.1 # +################### + +# +# Baseline GWS.DRIVEDOCS.1.1 +#-- + +DriveId1_1 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.1.1") + +LogMessage1_1 := "SHARING_OUTSIDE_DOMAIN" + +Check1_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage1_1, utils.TopLevelOU) + count(events) > 0 +} + +Check1_1_OK if {PolicyApiInUse} + +GetFriendlyValue1_1(Value) := "with Google accounts in compatible allowlisted domains" if { + Value in {"TRUSTED_DOMAINS", "ALLOWLISTED_DOMAINS"} +} else := "outside of the organization" if { + Value in {"SHARING_ALLOWED", "ALLOWED"} +} else := Value + +NonComplianceMessage1_1(value) := sprintf("Files owned by users or shared drives can be shared %s", + [value]) + +NonCompliantOUs1_1 contains { + "Name": OU, + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage1_1, OU) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + AcceptableValues := {"SHARING_NOT_ALLOWED", "INHERIT_FROM_PARENT", + "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES"} + not LastEvent.NewValue in AcceptableValues +} + +NonCompliantGroups1_1 contains { + "Name": Group, + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events := utils.FilterEventsGroup(LogEvents, LogMessage1_1, Group) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + AcceptableValues := {"SHARING_NOT_ALLOWED", "INHERIT_FROM_PARENT", + "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES"} + not LastEvent.NewValue in AcceptableValues +} + +# There are subsequent baselines that apply only if external sharing is +# allowed. For a given OU, sharing is enabled if either it's enabled in +# the top-level OU or it has been enabled explicitly in the OU. First, +# we have to determine if the setting is even present in the OU. If it +# is not present, the top-level OU setting is checked; otherwise the +# OU setting takes precedence. + +ExternalSharingAllowed(OU) := true if { + externalSharing := utils.GetApiSettingValue("drive_and_docs_external_sharing", + "externalSharingMode", + OU) + externalSharing != "DISALLOWED" +} + +NonCompliantOUs1_1 contains { + "Name": OU, + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1(externalSharing)) +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + externalSharing := settings.drive_and_docs_external_sharing.externalSharingMode + externalSharing != "DISALLOWED" +} + +tests contains { + "PolicyId": DriveId1_1, + "Criticality": "Should", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check1_1_OK +} + +tests contains { + "PolicyId": DriveId1_1, + "Criticality": "Should", + "ReportDetails": utils.ReportDetails(NonCompliantOUs1_1, NonCompliantGroups1_1), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_1, "NonCompliantGroups": NonCompliantGroups1_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check1_1_OK + Conditions := {count(NonCompliantOUs1_1) == 0, count(NonCompliantGroups1_1) == 0 } + Status := (false in Conditions) == false +} +#-- + +# +# Baseline GWS.DRIVEDOCS.1.2 +#-- + +DriveId1_2 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.1.2") + +LogMessage1_2 := "SHARING_OUTSIDE_DOMAIN" + +Check1_2_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage1_2, utils.TopLevelOU) + count(events) > 0 +} + +Check1_2_OK if {PolicyApiInUse} + +EventGetFriendlyValue1_2(Value) := "cannot" if { + Value in {"SHARING_NOT_ALLOWED INHERIT_FROM_PARENT", false} +} else := "can" + +EventNonComplianceMessage1_2(value) := sprintf("Users %s receive files outside the domain", + [value]) + +GetSharingValue(ShareSetting) := "allowlisted" if { + ShareSetting == "ALLOWLISTED_DOMAINS" +} else := "any" if { + ShareSetting == "ALLOWED" +} else := "no" if { + ShareSetting == "DISALLOWED" +} else := ShareSetting + +NonComplianceMessage1_2(Value) := sprintf("File sharing with %s domains, %s", + [Value, "receiving files permitted."]) + +NonCompliantOUs1_2 contains { + "Name": OU, + "Value": EventNonComplianceMessage1_2(EventGetFriendlyValue1_2(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage1_2, OU) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + AcceptableValues = {"SHARING_NOT_ALLOWED", "INHERIT_FROM_PARENT", + "TRUSTED_DOMAINS_ALLOWED", "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING"} + not LastEvent.NewValue in AcceptableValues +} + +NonCompliantGroups1_2 contains { + "Name": Group, + "Value": EventNonComplianceMessage1_2(EventGetFriendlyValue1_2(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events := utils.FilterEventsGroup(LogEvents, LogMessage1_2, Group) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + AcceptableValues = {"SHARING_NOT_ALLOWED", "INHERIT_FROM_PARENT", + "TRUSTED_DOMAINS_ALLOWED", "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING"} + not LastEvent.NewValue in AcceptableValues + } + +NonCompliantOUs1_2 contains { + "Name": OU, + "Value": NonComplianceMessage1_2(GetSharingValue("DISALLOWED")) +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + not ExternalSharingAllowed(OU) + receiveExternal := settings.drive_and_docs_external_sharing.allowReceivingExternalFiles + receiveExternal != false +} + +NonCompliantOUs1_2 contains { + "Name": OU, + "Value": NonComplianceMessage1_2(GetSharingValue(extShare)) +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + section := "drive_and_docs_external_sharing" + shareSetting := "externalSharingMode" + extShare := utils.GetApiSettingValue(section, shareSetting, OU) + extShare == "ALLOWLISTED_DOMAINS" + extShareSet := utils.ApiSettingExists(section, shareSetting, OU) + receiveSetting := "allowReceivingFilesOutsideAllowlistedDomains" + receiveExternal := utils.GetApiSettingValue(section, receiveSetting, OU) + receiveExternal != false + receiveExternalSet := utils.ApiSettingExists(section, receiveSetting, OU) + true in {extShareSet, receiveExternalSet} +} + +tests contains { + "PolicyId": DriveId1_2, + "Criticality": "Should", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check1_2_OK +} + +tests contains { + "PolicyId": DriveId1_2, + "Criticality": "Should", + "ReportDetails": utils.ReportDetails(NonCompliantOUs1_2, NonCompliantGroups1_2), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_2, + "NonCompliantGroups": NonCompliantGroups1_2}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check1_2_OK + Conditions := {count(NonCompliantOUs1_2) == 0, count(NonCompliantGroups1_2) == 0 } + Status := (false in Conditions) == false +} +#-- + +# +# Baseline GWS.DRIVEDOCS.1.3 +#-- + +DriveId1_3 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.1.3") + +LogMessage1_3 := "SHARING_OUTSIDE_DOMAIN" + +Check1_3_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage1_3, utils.TopLevelOU) + count(events) > 0 +} + +Check1_3_OK if {PolicyApiInUse} + +AcceptableValues1_3 := {"SHARING_ALLOWED_WITH_WARNING", + "SHARING_NOT_ALLOWED", + "INHERIT_FROM_PARENT", + "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES", + "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING", + "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE"} + +EventGetFriendlyValue1_3(Value) := "enabled" if { + Value in AcceptableValues1_3 == true +} else := "disabled" + +EventNonComplianceMessage1_3(value) := sprintf("External Sharing Warning is %s", + [value]) + +NonComplianceMessage1_3(Value) := sprintf("File sharing with %s domains, %s", + [Value, "without warnings."]) + +NonCompliantOUs1_3 contains { + "Name": OU, + "Value": EventNonComplianceMessage1_3(EventGetFriendlyValue1_3(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage1_3, OU) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + not LastEvent.NewValue in AcceptableValues1_3 +} + +NonCompliantGroups1_3 contains { + "Name": Group, + "Value": EventNonComplianceMessage1_3(EventGetFriendlyValue1_3(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events := utils.FilterEventsGroup(LogEvents, LogMessage1_3, Group) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + not LastEvent.NewValue in AcceptableValues1_3 +} + +NonCompliantOUs1_3 contains { + "Name": OU, + "Value": NonComplianceMessage1_3(GetSharingValue(extShare)) +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + section := "drive_and_docs_external_sharing" + shareSetting := "externalSharingMode" + extShare := utils.GetApiSettingValue(section, shareSetting, OU) + extShare == "ALLOWLISTED_DOMAINS" + extShareSet := utils.ApiSettingExists(section, shareSetting, OU) + warnSetting := "warnForSharingOutsideAllowlistedDomains" + warnShared := utils.GetApiSettingValue(section, warnSetting, OU) + warnShared != true + warnSharedSet := utils.ApiSettingExists(section, warnSetting, OU) + true in {extShareSet, warnSharedSet} +} + +NonCompliantOUs1_3 contains { + "Name": OU, + "Value": NonComplianceMessage1_3(GetSharingValue(extShare)) +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + section := "drive_and_docs_external_sharing" + shareSetting := "externalSharingMode" + extShare := utils.GetApiSettingValue(section, shareSetting, OU) + extShare == "ALLOWED" + extShareSet := utils.ApiSettingExists(section, shareSetting, OU) + warnSetting := "warnForExternalSharing" + warnShared := utils.GetApiSettingValue(section, warnSetting, OU) + warnShared != true + warnSharedSet := utils.ApiSettingExists(section, warnSetting, OU) + true in {extShareSet, warnSharedSet} +} + +tests contains { + "PolicyId": DriveId1_3, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check1_3_OK +} + +tests contains { + "PolicyId": DriveId1_3, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs1_3, NonCompliantGroups1_3), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_3, + "NonCompliantGroups": NonCompliantGroups1_3}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check1_3_OK + Conditions := {count(NonCompliantOUs1_3) == 0, count(NonCompliantGroups1_3) == 0} + Status := (false in Conditions) == false +} + +#-- + +# +# Baseline GWS.DRIVEDOCS.1.4 +#-- + +DriveId1_4 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.1.4") + +LogMessage1_4_A := "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + +LogMessage1_4_B := "SHARING_OUTSIDE_DOMAIN" + +default NoSuchEvent1_4(_) := false + +NoSuchEvent1_4(TopLevelOU) := true if { + Events_A := utils.FilterEvents(LogEvents, LogMessage1_4_A, TopLevelOU) + count(Events_A) == 0 +} + +NoSuchEvent1_4(TopLevelOU) := true if { + Events_B := utils.FilterEvents(LogEvents, LogMessage1_4_B, TopLevelOU) + count(Events_B) == 0 +} + +Check1_4_OK if { + not PolicyApiInUse + not NoSuchEvent1_4(utils.TopLevelOU) +} + +Check1_4_OK if {PolicyApiInUse} + +AcceptableValues1_4_A := {"NOT_ALLOWED", "INHERIT_FROM_PARENT", true} + +AcceptableValues1_4_B := {"SHARING_NOT_ALLOWED", "INHERIT_FROM_PARENT"} + +EventGetFriendlyValue1_4(Value_A, Value_B) := "disabled" if { + Value_B in AcceptableValues1_4_B +} else := "enabled but sharing items to non-google accounts is disabled" if { + Value_A in AcceptableValues1_4_A +} else := "enabled and items can be shared to non-google accounts" + +EventNonComplianceMessage1_4(value) := sprintf("External Sharing is %s", + [value]) + +NonComplianceMessage1_4(Value) := sprintf("File sharing with %s domains, %s", + [Value, "with non-Google users."]) + +NonCompliantOUs1_4 contains { + "Name": OU, + "Value": EventNonComplianceMessage1_4(EventGetFriendlyValue1_4(LastEvent_A.NewValue, + LastEvent_B.NewValue)) +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events_A := utils.FilterEventsOU(LogEvents, LogMessage1_4_A, OU) + count(Events_A) > 0 + LastEvent_A := utils.GetLastEvent(Events_A) + + Events_B := utils.FilterEventsOU(LogEvents, LogMessage1_4_B, OU) + count(Events_B) > 0 + LastEvent_B := utils.GetLastEvent(Events_B) + + not LastEvent_A.NewValue in AcceptableValues1_4_A + not LastEvent_B.NewValue in AcceptableValues1_4_B +} + +NonCompliantGroups1_4 contains { + "Name": Group, + "Value": EventNonComplianceMessage1_4(EventGetFriendlyValue1_4(LastEvent_A.NewValue, + LastEvent_B.NewValue)) +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events_A := utils.FilterEventsGroup(LogEvents, LogMessage1_4_A, Group) + count(Events_A) > 0 + LastEvent_A := utils.GetLastEvent(Events_A) + + Events_B := utils.FilterEventsGroup(LogEvents, LogMessage1_4_B, Group) + count(Events_B) > 0 + LastEvent_B := utils.GetLastEvent(Events_B) + + not LastEvent_A.NewValue in AcceptableValues1_4_A + not LastEvent_B.NewValue in AcceptableValues1_4_B +} + +NonCompliantOUs1_4 contains { + "Name": OU, + "Value": NonComplianceMessage1_4(GetSharingValue(extShare)) +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + section := "drive_and_docs_external_sharing" + shareSetting := "externalSharingMode" + extShare := utils.GetApiSettingValue(section, shareSetting, OU) + extShare == "ALLOWLISTED_DOMAINS" + extShareSet := utils.ApiSettingExists(section, shareSetting, OU) + nonGoogleSetting := "allowNonGoogleInvitesInAllowlistedDomains" + nonGoogle := utils.GetApiSettingValue(section, nonGoogleSetting, OU) + nonGoogle != false + nonGoogleSet := utils.ApiSettingExists(section, nonGoogleSetting, OU) + true in {extShareSet, nonGoogleSet} +} + +NonCompliantOUs1_4 contains { + "Name": OU, + "Value": NonComplianceMessage1_4(GetSharingValue(extShare)) +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + section := "drive_and_docs_external_sharing" + shareSetting := "externalSharingMode" + extShare := utils.GetApiSettingValue(section, shareSetting, OU) + extShare == "ALLOWED" + extShareSet := utils.ApiSettingExists(section, shareSetting, OU) + nonGoogleSetting := "allowNonGoogleInvites" + nonGoogle := utils.GetApiSettingValue(section, nonGoogleSetting, OU) + nonGoogle != false + nonGoogleSet := utils.ApiSettingExists(section, nonGoogleSetting, OU) + true in {extShareSet, nonGoogleSet} +} + +tests contains { + "PolicyId": DriveId1_4, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check1_4_OK +} + +tests contains { + "PolicyId": DriveId1_4, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs1_4, NonCompliantGroups1_4), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_4, + "NonCompliantGroups": NonCompliantGroups1_4}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check1_4_OK + Conditions := {count(NonCompliantOUs1_4) == 0, count(NonCompliantGroups1_4) == 0} + Status := (false in Conditions) == false +} + +#-- + +# +# Baseline GWS.DRIVEDOCS.1.5 +#-- + +DriveId1_5 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.1.5") + +LogMessage1_5 := "PUBLISHING_TO_WEB" + +Check1_5_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage1_5, utils.TopLevelOU) + count(events) > 0 +} + +Check1_5_OK if {PolicyApiInUse} + +NonComplianceMessage1_5 := "Published web content can be made visible to anyone with a link" + +NonCompliantOUs1_5 contains { + "Name": OU, + "Value": NonComplianceMessage1_5 +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage1_5, OU) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + contains("ALLOWED", LastEvent.NewValue) == true +} + +NonCompliantGroups1_5 contains { + "Name": Group, + "Value": NonComplianceMessage1_5 +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events := utils.FilterEventsGroup(LogEvents, LogMessage1_5, Group) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + contains("ALLOWED", LastEvent.NewValue) == true +} + +NonCompliantOUs1_5 contains { + "Name": OU, + "Value": NonComplianceMessage1_5 +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + section := "drive_and_docs_external_sharing" + shareSetting := "externalSharingMode" + extShare := utils.GetApiSettingValue(section, shareSetting, OU) + extShare != "DISALLOWED" + extShareSet := utils.ApiSettingExists(section, shareSetting, OU) + allowPublishSetting := "allowPublishingFiles" + allowPublish := utils.GetApiSettingValue(section, allowPublishSetting, OU) + allowPublish != false + allowPublishSet := utils.ApiSettingExists(section, allowPublishSetting, OU) + true in {extShareSet, allowPublishSet} +} + +tests contains { + "PolicyId": DriveId1_5, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check1_5_OK +} + +tests contains { + "PolicyId": DriveId1_5, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs1_5, NonCompliantGroups1_5), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_5, + "NonCompliantGroups": NonCompliantGroups1_5}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check1_5_OK + Conditions := {count(NonCompliantOUs1_5) == 0, count(NonCompliantGroups1_5) == 0} + Status := (false in Conditions) == false +} +#-- + +# +# Baseline GWS.DRIVEDOCS.1.6 +#-- + +DriveId1_6 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.1.6") + +LogMessage1_6 := "SHARING_ACCESS_CHECKER_OPTIONS" + +Check1_6_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage1_6, utils.TopLevelOU) + count(events) > 0 +} + +Check1_6_OK if {PolicyApiInUse} + +NonComplianceMessage1_6(value) := sprintf("Access Checker allows users to share files to %s", + [value]) + +GetFriendlyValue1_6(Value) := +"recipients only, suggested target audience, or public (no Google account required)" if { + Value in {"ALL", "RECIPIENTS_OR_AUDIENCE_OR_PUBLIC"} +} else := "recipients only, or suggested target audience" if { + Value in {"DOMAIN_OR_NAMED_PARTIES", "RECIPIENTS_OR_AUDIENCE"} +} else := Value + +NonCompliantOUs1_6 contains { + "Name": OU, + "Value": NonComplianceMessage1_6(GetFriendlyValue1_6(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage1_6, OU) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + AcceptableValues := {"NAMED_PARTIES_ONLY", "INHERIT_FROM_PARENT"} + not LastEvent.NewValue in AcceptableValues +} + +NonCompliantGroups1_6 contains { + "Name":Group, + "Value": NonComplianceMessage1_6(GetFriendlyValue1_6(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events := utils.FilterEventsGroup(LogEvents, LogMessage1_6, Group) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + AcceptableValues := {"NAMED_PARTIES_ONLY", "INHERIT_FROM_PARENT"} + not LastEvent.NewValue in AcceptableValues +} + +NonCompliantOUs1_6 contains { + "Name": OU, + "Value": NonComplianceMessage1_6(GetFriendlyValue1_6(accessCheck)) +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + accessCheck := settings.drive_and_docs_external_sharing.accessCheckerSuggestions + accessCheck != "RECIPIENTS_ONLY" +} + +tests contains { + "PolicyId": DriveId1_6, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check1_6_OK +} + +tests contains { + "PolicyId": DriveId1_6, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs1_6, NonCompliantGroups1_6), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_6, + "NonCompliantGroups": NonCompliantGroups1_6}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check1_6_OK + Conditions := {count(NonCompliantOUs1_6) == 0, count(NonCompliantGroups1_6) == 0} + Status := (false in Conditions) == false +} +#-- + +# +# Baseline GWS.DRIVEDOCS.1.7 +#-- + +DriveId1_7 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.1.7") + +LogMessage1_7 := "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + +Check1_7_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage1_7, utils.TopLevelOU) + count(events) > 0 +} + +Check1_7_OK if {PolicyApiInUse} + +NonComplianceMessage1_7(value) := sprintf("%s can distribute content outside of the organization", + [value]) + +GetFriendlyValue1_7(Value):= "Setting is compliant." if { + Value in {"CROSS_DOMAIN_MOVES_BLOCKED", "NONE"} +} else := "Only users inside the organization" if { + Value in {"CROSS_DOMAIN_FROM_INTERNAL_ONLY", "ELIGIBLE_INTERNAL_USERS"} +} else := "Anyone" if { + Value in {"CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL", "ALL_ELIGIBLE_USERS"} +} else := Value + +NonCompliantOUs1_7 contains { + "Name": OU, + "Value": NonComplianceMessage1_7(GetFriendlyValue1_7(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage1_7, OU) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + SettingValue := "CROSS_DOMAIN_MOVES_BLOCKED INHERIT_FROM_PARENT" + contains(SettingValue, LastEvent.NewValue) == false +} + +NonCompliantGroups1_7 contains { + "Name": Group, + "Value": GetFriendlyValue1_7(LastEvent.NewValue) +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events := utils.FilterEventsGroup(LogEvents, LogMessage1_7, Group) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + SettingValue := "CROSS_DOMAIN_MOVES_BLOCKED INHERIT_FROM_PARENT" + contains(SettingValue, LastEvent.NewValue) == false +} + +NonCompliantOUs1_7 contains { + "Name": OU, + "Value": NonComplianceMessage1_7(GetFriendlyValue1_7(moveContent)) +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + section := "drive_and_docs_external_sharing" + shareSetting := "externalSharingMode" + extShare := utils.GetApiSettingValue(section, shareSetting, OU) + extShare != "DISALLOWED" + extShareSet := utils.ApiSettingExists(section, shareSetting, OU) + moveContentSetting := "allowedPartiesForDistributingContent" + moveContent := utils.GetApiSettingValue(section, moveContentSetting, OU) + moveContent != "NONE" + moveContentSet := utils.ApiSettingExists(section, moveContentSetting, OU) + true in {extShareSet, moveContentSet} +} + +tests contains { + "PolicyId": DriveId1_7, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check1_7_OK +} + +tests contains { + "PolicyId": DriveId1_7, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs1_7, NonCompliantGroups1_7), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_7, "NonCompliantGroups": NonCompliantGroups1_7}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check1_7_OK + Conditions := {count(NonCompliantOUs1_7) == 0, count(NonCompliantGroups1_7) == 0} + Status := (false in Conditions) == false +} +#-- + +# +# Baseline GWS.DRIVEDOCS.1.8 +#-- + +DriveId1_8 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.1.8") + +LogMessage1_8 := "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" + +Check1_8_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage1_8, utils.TopLevelOU) + count(events) > 0 +} + +Check1_8_OK if {PolicyApiInUse} + +NonComplianceMessage1_8(value) := sprintf("When users create items, the default access is set to: %s", + [value]) + +GetFriendlyValue1_8(Value):= "private to the owner." if { + Value in {"PRIVATE", "PRIVATE_TO_OWNER"} +} else := "the primary target audience can access the item if they have the link" if { + Value in {"PEOPLE_WITH_LINK", "PRIMARY_AUDIENCE_WITH_LINK"} +} else := "the primary target audience can search and find the item." if { + Value in {"PUBLIC", "PRIMARY_AUDIENCE_WITH_LINK_OR_SEARCH"} +} else := Value + +NonCompliantOUs1_8 contains { + "Name": OU, + "Value": NonComplianceMessage1_8(GetFriendlyValue1_8(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage1_8, OU) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "PRIVATE" + LastEvent.NewValue != "INHERIT_FROM_PARENT" +} + +NonCompliantGroups1_8 contains { + "Name": Group, + "Value": NonComplianceMessage1_8(GetFriendlyValue1_8(LastEvent.NewValue)) +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events := utils.FilterEventsGroup(LogEvents, LogMessage1_8, Group) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "PRIVATE" + LastEvent.NewValue != "INHERIT_FROM_PARENT" +} + +NonCompliantOUs1_8 contains { + "Name": OU, + "Value": NonComplianceMessage1_8(GetFriendlyValue1_8(defaultAccess)) +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + defaultAccess := settings.drive_and_docs_general_access_default.defaultFileAccess + defaultAccess != "PRIVATE_TO_OWNER" +} + +tests contains { + "PolicyId": DriveId1_8, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check1_8_OK +} + +tests contains { + "PolicyId": DriveId1_8, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs1_8, NonCompliantGroups1_8), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_8, "NonCompliantGroups": NonCompliantGroups1_8}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check1_8_OK + Conditions := {count(NonCompliantOUs1_8) == 0, count(NonCompliantGroups1_8) == 0} + Status := (false in Conditions) == false +} +#-- + +################### +# GWS.DRIVEDOCS.2 # +################### + +# +# Baseline GWS.DRIVEDOCS.2.1 +#-- + +DriveId2_1 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.2.1") + +LogMessage2_1 := "Shared Drive Creation new_team_drive_admin_only" + +Check2_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage2_1, utils.TopLevelOU) + count(events) > 0 +} + +Check2_1_OK if {PolicyApiInUse} + +NonComplianceMessage2_1 := "Members with manager access can override shared drive settings." + +NonCompliantOUs2_1 contains { + "Name": OU, + "Value": NonComplianceMessage2_1 +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage2_1, OU) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + contains("true", LastEvent.NewValue) == false + LastEvent.NewValue != "DELETE_APPLICATION_SETTING" +} + +NonCompliantGroups2_1 contains { + "Name": Group, + "Value": NonComplianceMessage2_1 +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events := utils.FilterEventsGroup(LogEvents, LogMessage2_1, Group) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + contains("true", LastEvent.NewValue) == false + LastEvent.NewValue != "DELETE_APPLICATION_SETTING" +} + +NonCompliantOUs2_1 contains { + "Name": OU, + "Value": NonComplianceMessage2_1 +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + managerOverride := settings.drive_and_docs_shared_drive_creation.allowManagersToOverrideSettings + managerOverride != false +} + +tests contains { + "PolicyId": DriveId2_1, + "Criticality": "Should", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check2_1_OK +} + +tests contains { + "PolicyId": DriveId2_1, + "Criticality": "Should", + "ReportDetails": utils.ReportDetails(NonCompliantOUs2_1, NonCompliantGroups2_1), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs2_1, "NonCompliantGroups": NonCompliantGroups2_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check2_1_OK + Conditions := {count(NonCompliantOUs2_1) == 0, count(NonCompliantGroups2_1) == 0 } + Status := (false in Conditions) == false +} +#-- + +# +# Baseline GWS.DRIVEDOCS.2.2 +#-- + +DriveId2_2 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.2.2") + +LogMessage2_2 := "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + +Check2_2_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage2_2, utils.TopLevelOU) + count(events) > 0 +} + +Check2_2_OK if {PolicyApiInUse} + +NonComplianceMessage2_2 := "Users outside the organization can access files in shared drives." + +NonCompliantOUs2_2 contains { + "Name": OU, + "Value": NonComplianceMessage2_2 +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage2_2, OU) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + contains("true", LastEvent.NewValue) == false + LastEvent.NewValue != "DELETE_APPLICATION_SETTING" +} + +NonCompliantGroups2_2 contains { + "Name": Group, + "Value": NonComplianceMessage2_2 +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events := utils.FilterEventsGroup(LogEvents, LogMessage2_2, Group) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + contains("true", LastEvent.NewValue) == false + LastEvent.NewValue != "DELETE_APPLICATION_SETTING" +} + +NonCompliantOUs2_2 contains { + "Name": OU, + "Value": NonComplianceMessage2_2 +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + externalAccess := settings.drive_and_docs_shared_drive_creation.allowExternalUserAccess + externalAccess != false +} + +tests contains { + "PolicyId": DriveId2_2, + "Criticality": "Should", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check2_2_OK +} + +tests contains { + "PolicyId": DriveId2_2, + "Criticality": "Should", + "ReportDetails": utils.ReportDetails(NonCompliantOUs2_2, NonCompliantGroups2_2), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs2_2, "NonCompliantGroups": NonCompliantGroups2_2}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check2_2_OK + Conditions := {count(NonCompliantOUs2_2) == 0, count(NonCompliantGroups2_2) == 0 } + Status := (false in Conditions) == false +} +#-- + +# +# Baseline GWS.DRIVEDOCS.2.3 +#-- + +DriveId2_3 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.2.3") + +LogMessage2_3 := "Shared Drive Creation new_team_drive_restricts_direct_access" + +Check2_3_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage2_3, utils.TopLevelOU) + count(events) > 0 +} + +Check2_3_OK if {PolicyApiInUse} + +NonComplianceMessage2_3 := "Users who aren't shared drive members are not allowed to be added to files." + +NonCompliantOUs2_3 contains { + "Name": OU, + "Value": NonComplianceMessage2_3 +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage2_3, OU) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + contains("true", LastEvent.NewValue) == false + LastEvent.NewValue != "DELETE_APPLICATION_SETTING" +} +NonCompliantGroups2_3 contains { + "Name": Group, + "Value": NonComplianceMessage2_3 +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events := utils.FilterEventsGroup(LogEvents, LogMessage2_3, Group) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + contains("true", LastEvent.NewValue) == false + LastEvent.NewValue != "DELETE_APPLICATION_SETTING" +} + +NonCompliantOUs2_3 contains { + "Name": OU, + "Value": NonComplianceMessage2_3 +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + nonMemberAccess := settings.drive_and_docs_shared_drive_creation.allowNonMemberAccess + nonMemberAccess != true +} + +tests contains { + "PolicyId": DriveId2_3, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check2_3_OK +} + +tests contains { + "PolicyId": DriveId2_3, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs2_3, NonCompliantGroups2_3), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs2_3, + "NonCompliantGroups": NonCompliantGroups2_3}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check2_3_OK + Conditions := {count(NonCompliantOUs2_3) == 0, count(NonCompliantGroups2_3) == 0 } + Status := (false in Conditions) == false +} +#-- + +# +# Baseline GWS.DRIVEDOCS.2.4 +#-- + +DriveId2_4 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.2.4") + +LogMessage2_4 := "Shared Drive Creation new_team_drive_restricts_download" + +Check2_4_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage2_4, utils.TopLevelOU) + count(events) > 0 +} + +Check2_4_OK if {PolicyApiInUse} + +NonComplianceMessage2_4 := "Viewers and commenters are allowed to download, print, and copy files." + +NonCompliantOUs2_4 contains { + "Name": OU, + "Value": NonComplianceMessage2_4 +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage2_4, OU) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + contains("false", LastEvent.NewValue) == true + LastEvent.NewValue != "DELETE_APPLICATION_SETTING" +} + +NonCompliantGroups2_4 contains { + "Name": Group, + "Value": NonComplianceMessage2_4 +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events := utils.FilterEventsGroup(LogEvents, LogMessage2_4, Group) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + contains("false", LastEvent.NewValue) == true + LastEvent.NewValue != "DELETE_APPLICATION_SETTING" +} + +NonCompliantOUs2_4 contains { + "Name": OU, + "Value": NonComplianceMessage2_4 +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + allowPrint := settings.drive_and_docs_shared_drive_creation.allowedPartiesForDownloadPrintCopy + allowPrint != "EDITORS_ONLY" +} + +tests contains { + "PolicyId": DriveId2_4, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check2_4_OK +} + +tests contains { + "PolicyId": DriveId2_4, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs2_4, NonCompliantGroups2_4), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs2_4, + "NonCompliantGroups": NonCompliantGroups2_4}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check2_4_OK + Conditions := {count(NonCompliantOUs2_4) == 0, count(NonCompliantGroups2_4) == 0 } + Status := (false in Conditions) == false +} +#-- + +################### +# GWS.DRIVEDOCS.3 # +################### + +# +# Baseline GWS.DRIVEDOCS.3.1 +#-- + +DriveId3_1 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.3.1") + +LogMessage3_1a := "Link Security Update Settings allow_less_secure_link_user_restore" +LogMessage3_1b := "Link Security Update Settings less_secure_link_option" + +default NoSuchEvent3_1(_) := false + +NoSuchEvent3_1(TopLevelOU) := true if { + Events_A := utils.FilterEventsOU(LogEvents, LogMessage3_1a, TopLevelOU) + count(Events_A) == 0 +} + +NoSuchEvent3_1(TopLevelOU) := true if { + Events := utils.FilterEventsOU(LogEvents, LogMessage3_1b, TopLevelOU) + count(Events) == 0 +} + +Check3_1_OK if { + not PolicyApiInUse + not NoSuchEvent3_1(utils.TopLevelOU) +} + +Check3_1_OK if {PolicyApiInUse} + +NonComplianceMessage3_1(securityUpdate, userUpdate) := "The security update is removed from all impacted files." if { + securityUpdate in {"REQUIRE_LESS_SECURE_LINKS", "REMOVE_FROM_IMPACTED_FILES"} +} +else := "Users are allowed to remove/apply the security update for files they own or manage." if { + userUpdate in {"true", true} +} + +NonCompliantOUs3_1 contains { + "Name": OU, + "Value": NonComplianceMessage3_1(LastEvent_B.NewValue, LastEvent_A.NewValue) +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events_A := utils.FilterEventsOU(LogEvents, LogMessage3_1a, OU) + count(Events_A) > 0 + LastEvent_A := utils.GetLastEvent(Events_A) + + Events_B := utils.FilterEventsOU(LogEvents, LogMessage3_1b, OU) + count(Events_B) > 0 + LastEvent_B := utils.GetLastEvent(Events_B) + + true in { + LastEvent_A.NewValue != "false", + LastEvent_B.NewValue != "REMOVE_LESS_SECURE_LINKS" + } +} + +NonCompliantOUs3_1 contains { + "Name": OU, + "Value": NonComplianceMessage3_1(securityUpdate, userUpdate) +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + userUpdate := settings.drive_and_docs_file_security_update.allowUsersToManageUpdate + securityUpdate := settings.drive_and_docs_file_security_update.securityUpdate + + true in { + userUpdate != false, + securityUpdate != "APPLY_TO_IMPACTED_FILES" + } +} + +tests contains { + "PolicyId": DriveId3_1, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check3_1_OK +} + +tests contains { + "PolicyId": DriveId3_1, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs3_1, []), + "ActualValue" : {"NonCompliantOUs": NonCompliantOUs3_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check3_1_OK + Status := count(NonCompliantOUs3_1) == 0 +} +#-- + +################### +# GWS.DRIVEDOCS.4 # +################### + +# +# Baseline GWS.DRIVEDOCS.4.1 +#-- + +DriveId4_1 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.4.1") + +LogMessage4_1 := "ENABLE_DRIVE_APPS" + +Check4_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage4_1, utils.TopLevelOU) + count(events) > 0 +} + +Check4_1_OK if {PolicyApiInUse} + +NonComplianceMessage4_1 := "Drive SDK is enabled." + +NonCompliantOUs4_1 contains { + "Name": OU, + "Value": NonComplianceMessage4_1 +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage4_1, OU) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "false" + LastEvent.NewValue != "INHERIT_FROM_PARENT" +} +NonCompliantGroups4_1 contains { + "Name": Group, + "Value": NonComplianceMessage4_1 +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events := utils.FilterEventsGroup(LogEvents, LogMessage4_1, Group) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "false" + LastEvent.NewValue != "INHERIT_FROM_PARENT" +} + +NonCompliantOUs4_1 contains { + "Name": OU, + "Value": NonComplianceMessage4_1 +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + sdkAccess := settings.drive_and_docs_drive_sdk.enableDriveSdkApiAccess + sdkAccess != false +} + +tests contains { + "PolicyId": DriveId4_1, + "Criticality": "Should", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check4_1_OK +} + +tests contains { + "PolicyId": DriveId4_1, + "Criticality": "Should", + "ReportDetails": utils.ReportDetails(NonCompliantOUs4_1, NonCompliantGroups4_1), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs4_1, "NonCompliantGroups": NonCompliantGroups4_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check4_1_OK + Conditions := {count(NonCompliantOUs4_1) == 0, count(NonCompliantGroups4_1) == 0} + Status := (false in Conditions) == false +} + +#-- + +################### +# GWS.DRIVEDOCS.5 # +################### + +# +# Baseline GWS.DRIVEDOCS.5.1 +#-- + +DriveId5_1 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.5.1") + +LogMessage5_1 := "ENABLE_DOCS_ADD_ONS" + +Check5_1_OK if { + # not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage5_1, utils.TopLevelOU) + count(events) > 0 +} + +# Check5_1_OK if {PolicyApiInUse} + +NonComplianceMessage5_1 := "Users can install Google Docs add-ons from add-ons store." + +NonCompliantOUs5_1 contains { + "Name": OU, + "Value": NonComplianceMessage5_1 +} +if { + # not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage5_1, OU) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "false" + LastEvent.NewValue != "INHERIT_FROM_PARENT" +} + +NonCompliantGroups5_1 contains { + "Name": Group, + "Value": NonComplianceMessage5_1 +} +if { + # not PolicyApiInUse + some Group in utils.GroupsWithEvents + Events := utils.FilterEventsGroup(LogEvents, LogMessage5_1, Group) + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "false" + LastEvent.NewValue != "INHERIT_FROM_PARENT" +} + +# NOT yet implemented in policy API +#NonCompliantOUs5_1 contains { +# "Name": OU, +# "Value": NonComplianceMessage5_1 +#} +#if { +# some OU, settings in input.policies +# DriveEnabled(OU) +# addOns := settings.drive_and_docs_drive_sdk.enableDriveSdkApiAccess +# addOns != false +#} + +tests contains { + "PolicyId": DriveId5_1, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + # not PolicyApiInUse + DefaultSafe := false + not Check5_1_OK +} + +tests contains { + "PolicyId": DriveId5_1, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs5_1, NonCompliantGroups5_1), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_1, + "NonCompliantGroups": NonCompliantGroups5_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check5_1_OK + Conditions := {count(NonCompliantOUs5_1) == 0, count(NonCompliantGroups5_1) == 0} + Status := (false in Conditions) == false +} +#-- + +################### +# GWS.DRIVEDOCS.6 # +################### + +# +# Baseline GWS.DRIVEDOCS.6.1 +#-- + +DriveId6_1 := utils.PolicyIdWithSuffix("GWS.DRIVEDOCS.6.1") + +LogMessage6_1 := "ENABLE_DOCS_ADD_ONS" + +LogMessage6_1a := "DriveFsSettingsProto drive_fs_enabled" +LogMessage6_1b := "DriveFsSettingsProto company_owned_only_enabled" + +default NoSuchEvent6_1(_) := true + +NoSuchEvent6_1(TopLevelOU) := false if { + Events := utils.FilterEventsOU(LogEvents, LogMessage6_1a, TopLevelOU) + count(Events) != 0 +} + +NoSuchEvent6_1(TopLevelOU) := false if { + Events := utils.FilterEventsOU(LogEvents, LogMessage6_1b, TopLevelOU) + count(Events) != 0 +} + +Check6_1_OK if { + not PolicyApiInUse + not NoSuchEvent6_1(utils.TopLevelOU) +} + +Check6_1_OK if {PolicyApiInUse} + +NonComplianceMessage6_1(Value) := sprintf("Drive for Desktop is %s.", [Value]) + +GetFriendlyValue6_1(CompanyOnly, DesktopEnabled) := "enabled and can be used on any device" if { + CompanyOnly in {"false", false} + DesktopEnabled in {"true", true} + } + else := "disabled" if { + DesktopEnabled in {"false", false} + } + else := "enabled but only on approved devices" if { + CompanyOnly in {"true", true} + DesktopEnabled in {"true", true} + } + +NonCompliantOUs6_1 contains { + "Name": OU, + "Value": NonComplianceMessage6_1(GetFriendlyValue6_1(LastCompanyOnlyEvent.NewValue, + LastDriveEnabledEvent.NewValue)) +} +if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + + DriveEnabledEvents := utils.FilterEventsOU(LogEvents, LogMessage6_1a, OU) + count(DriveEnabledEvents) > 0 + LastDriveEnabledEvent := utils.GetLastEvent(DriveEnabledEvents) + LastDriveEnabledEvent.NewValue != "DELETE_APPLICATION_SETTING" + + CompanyOnlyEvents := utils.FilterEventsOU(LogEvents, LogMessage6_1b, OU) + count(CompanyOnlyEvents) > 0 + LastCompanyOnlyEvent := utils.GetLastEvent(CompanyOnlyEvents) + LastCompanyOnlyEvent.NewValue != "DELETE_APPLICATION_SETTING" + + LastDriveEnabledEvent.NewValue == "true" + LastCompanyOnlyEvent.NewValue != "true" + } + +NonCompliantGroups6_1 contains { + "Name": Group, + "Value": NonComplianceMessage6_1(GetFriendlyValue6_1(LastCompanyOnlyEvent.NewValue, + LastDriveEnabledEvent.NewValue)) +} +if { + not PolicyApiInUse + some Group in utils.GroupsWithEvents + + DriveEnabledEvents := utils.FilterEventsGroup(LogEvents, LogMessage6_1a, Group) + count(DriveEnabledEvents) > 0 + LastDriveEnabledEvent := utils.GetLastEvent(DriveEnabledEvents) + LastDriveEnabledEvent.NewValue != "DELETE_APPLICATION_SETTING" + + CompanyOnlyEvents := utils.FilterEventsGroup(LogEvents, LogMessage6_1b, Group) + count(CompanyOnlyEvents) > 0 + LastCompanyOnlyEvent := utils.GetLastEvent(CompanyOnlyEvents) + LastCompanyOnlyEvent.NewValue != "DELETE_APPLICATION_SETTING" + + LastDriveEnabledEvent.NewValue == "true" + LastCompanyOnlyEvent.NewValue != "true" + } + +NonCompliantOUs6_1 contains { + "Name": OU, + "Value": NonComplianceMessage6_1(GetFriendlyValue6_1(allowAuthorized, + desktopEnabled)) +} +if { + some OU, settings in input.policies + DriveEnabled(OU) + section := "drive_and_docs_drive_for_desktop" + desktopSetting := "allowDriveForDesktop" + desktopEnabled := utils.GetApiSettingValue(section, desktopSetting, OU) + desktopEnabled + desktopSet := utils.ApiSettingExists(section, desktopSetting, OU) + authDevicesSetting := "restrictToAuthorizedDevices" + allowAuthorized := utils.GetApiSettingValue(section, authDevicesSetting, OU) + not allowAuthorized + authDevicesSet := utils.ApiSettingExists(section, authDevicesSetting, OU) + true in {desktopSet, authDevicesSet} +} + +tests contains { + "PolicyId": DriveId6_1, + "Criticality": "Should", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event for the top-level OU in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check6_1_OK +} + +tests contains { + "PolicyId": DriveId6_1, + "Criticality": "Should", + "ReportDetails": utils.ReportDetails(NonCompliantOUs6_1, NonCompliantGroups6_1), + "ActualValue" : {"NonCompliantOUs": NonCompliantOUs6_1, "NonCompliantGroups": NonCompliantGroups6_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check6_1_OK + Conditions := {count(NonCompliantOUs6_1) == 0, count(NonCompliantGroups6_1) == 0} + Status := (false in Conditions) == false +} +#-- diff --git a/rego/Gmail.rego b/scubagoggles/rego/Gmail.rego similarity index 62% rename from rego/Gmail.rego rename to scubagoggles/rego/Gmail.rego index 8b63cb02..77307f25 100644 --- a/rego/Gmail.rego +++ b/scubagoggles/rego/Gmail.rego @@ -1,7 +1,11 @@ package gmail -import data.utils import future.keywords +import data.utils +import data.utils.GetFriendlyEnabledValue +import data.utils.PolicyApiInUse + +GmailEnabled(orgunit) := utils.AppEnabled(input.policies, "gmail", orgunit) Format(Array) := format_int(count(Array), 10) @@ -28,21 +32,18 @@ LogEvents := utils.GetEvents("gmail_logs") ############### # -# Baseline GWS.GMAIL.1.1v0.3 +# Baseline GWS.GMAIL.1.1 #-- +GmailId1_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.1.1") + # Cannot be controlled at group level -GetFriendlyValue1_1(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value NonCompliantOUs1_1 contains { "Name": OU, "Value": concat(" ", [ "Mail delegation is set to", - GetFriendlyValue1_1(LastEvent.NewValue) + GetFriendlyEnabledValue(LastEvent.NewValue) ]) } if { @@ -54,7 +55,7 @@ if { } tests contains { - "PolicyId": "GWS.GMAIL.1.1v0.3", + "PolicyId": GmailId1_1, "Criticality": "Should", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -68,7 +69,7 @@ if { } tests contains { - "PolicyId": "GWS.GMAIL.1.1v0.3", + "PolicyId": GmailId1_1, "Criticality": "Should", "ReportDetails": utils.ReportDetails(NonCompliantOUs1_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_1}, @@ -87,9 +88,11 @@ if { ############### # -# Baseline GWS.GMAIL.2.1v0.3 +# Baseline GWS.GMAIL.2.1 #-- +GmailId2_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.2.1") + # Not applicable at OU or Group level DomainsWithDkim contains DkimRecord.domain if { some DkimRecord in input.dkim_records @@ -98,7 +101,7 @@ DomainsWithDkim contains DkimRecord.domain if { } tests contains { - "PolicyId": "GWS.GMAIL.2.1v0.3", + "PolicyId": GmailId2_1, "Prerequisites": ["directory/v1/domains/list", "get_dkim_records"], "Criticality": "Should", "ReportDetails": ReportDetailsArray(Status, DomainsWithoutDkim, AllDomains), @@ -118,9 +121,11 @@ if { ############### # -# Baseline GWS.GMAIL.3.1v0.3 +# Baseline GWS.GMAIL.3.1 #-- +GmailId3_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.3.1") + # Not applicable at OU or Group level DomainsWithSpf contains SpfRecord.domain if { some SpfRecord in input.spf_records @@ -134,7 +139,7 @@ DomainsWithSpf contains SpfRecord.domain if { } tests contains { - "PolicyId": "GWS.GMAIL.3.1v0.3", + "PolicyId": GmailId3_1, "Prerequisites": ["directory/v1/domains/list", "get_spf_records"], "Criticality": "Shall", "ReportDetails": ReportDetailsArray(Status, DomainsWithoutSpf, AllDomains), @@ -154,9 +159,11 @@ if { ############### # -# Baseline GWS.GMAIL.4.1v0.3 +# Baseline GWS.GMAIL.4.1 #-- +GmailId4_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.4.1") + # Not applicable at OU or Group level DomainsWithDmarc contains DmarcRecord.domain if { some DmarcRecord in input.dmarc_records @@ -165,7 +172,7 @@ DomainsWithDmarc contains DmarcRecord.domain if { } tests contains { - "PolicyId": "GWS.GMAIL.4.1v0.3", + "PolicyId": GmailId4_1, "Prerequisites": ["directory/v1/domains/list", "get_dmarc_records"], "Criticality": "Shall", "ReportDetails": ReportDetailsArray(Status, DomainsWithoutDmarc, AllDomains), @@ -180,9 +187,11 @@ if { #-- # -# Baseline GWS.GMAIL.4.2v0.3 +# Baseline GWS.GMAIL.4.2 #-- +GmailId4_2 := utils.PolicyIdWithSuffix("GWS.GMAIL.4.2") + # Not applicable at OU or Group level DomainsWithPreject contains DmarcRecord.domain if { some DmarcRecord in input.dmarc_records @@ -191,7 +200,7 @@ DomainsWithPreject contains DmarcRecord.domain if { } tests contains { - "PolicyId": "GWS.GMAIL.4.2v0.3", + "PolicyId": GmailId4_2, "Prerequisites": ["directory/v1/domains/list", "get_dmarc_records"], "Criticality": "Shall", "ReportDetails": ReportDetailsArray(Status, DomainsWithoutPreject, AllDomains), @@ -206,9 +215,11 @@ if { #-- # -# Baseline GWS.GMAIL.4.3v0.3 +# Baseline GWS.GMAIL.4.3 #-- +GmailId4_3 := utils.PolicyIdWithSuffix("GWS.GMAIL.4.3") + # Not applicable at OU or Group level DomainsWithDHSContact contains DmarcRecord.domain if { some DmarcRecord in input.dmarc_records @@ -217,7 +228,7 @@ DomainsWithDHSContact contains DmarcRecord.domain if { } tests contains { - "PolicyId": "GWS.GMAIL.4.3v0.3", + "PolicyId": GmailId4_3, "Prerequisites": ["directory/v1/domains/list", "get_dmarc_records"], "Criticality": "Shall", "ReportDetails": ReportDetailsArray(Status, DomainsWithoutDHSContact, AllDomains), @@ -232,9 +243,11 @@ if { #-- # -# Baseline GWS.GMAIL.4.4v0.3 +# Baseline GWS.GMAIL.4.4 #-- +GmailId4_4 := utils.PolicyIdWithSuffix("GWS.GMAIL.4.4") + # Not applicable at OU or Group level DomainsWithAgencyContact contains DmarcRecord.domain if { some DmarcRecord in input.dmarc_records @@ -243,7 +256,7 @@ DomainsWithAgencyContact contains DmarcRecord.domain if { } tests contains { - "PolicyId": "GWS.GMAIL.4.4v0.3", + "PolicyId": GmailId4_4, "Prerequisites": ["directory/v1/domains/list", "get_dmarc_records"], "Criticality": "Should", "ReportDetails": ReportDetailsArray(Status, DomainsWithoutAgencyContact, AllDomains), @@ -263,25 +276,35 @@ if { ############### # -# Baseline GWS.GMAIL.5.1v0.3 +# Baseline GWS.GMAIL.5.1 #-- # Cannot be controlled at group level -GetFriendlyValue5_1(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId5_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.5.1") + +LogMessage5_1 := "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + +Check5_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage5_1, utils.TopLevelOU) + count(events) > 0 +} + +Check5_1_OK if {PolicyApiInUse} + +# The following prefix applies to the next 2 baselines and is used to keep +# string length from getting too long. +ProtectionEncryptAttPrefix := "Protection against encrypted attachments" +NonComplianceMessage5_1(value) := sprintf("%s from untrusted senders is set to: %s", + [ProtectionEncryptAttPrefix, value]) NonCompliantOUs5_1 contains { "Name": OU, - "Value": concat(" ", [ - "Protection against encrypted attachments from untrusted senders is set to", - GetFriendlyValue5_1(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage5_1(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents Events := utils.FilterEventsOU(LogEvents, concat("", ["Attachment safety Enable: ", @@ -292,22 +315,31 @@ if { LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs5_1 contains { + "Name": OU, + "Value": NonComplianceMessage5_1(GetFriendlyEnabledValue(noEncrypt)) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + noEncrypt := settings.gmail_email_attachment_safety.enableEncryptedAttachmentProtection + noEncrypt != true +} + tests contains { - "PolicyId": "GWS.GMAIL.5.1v0.3", + "PolicyId": GmailId5_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", "RequirementMet": DefaultSafe, "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - SettingName := "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check5_1_OK } tests contains { - "PolicyId": "GWS.GMAIL.5.1v0.3", + "PolicyId": GmailId5_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs5_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_1}, @@ -315,32 +347,37 @@ tests contains { "NoSuchEvent": false } if { - SettingName := "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check5_1_OK Status := count(NonCompliantOUs5_1) == 0 } # -# Baseline GWS.GMAIL.5.2v0.3 +# Baseline GWS.GMAIL.5.2 #-- -GetFriendlyValue5_2(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId5_2 := utils.PolicyIdWithSuffix("GWS.GMAIL.5.2") + +LogMessage5_2 := "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + +Check5_2_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage5_2, utils.TopLevelOU) + count(events) > 0 +} + +Check5_2_OK if {PolicyApiInUse} + +NonComplianceMessage5_2(value) := sprintf("%s with scripts from untrusted senders is set to: %s", + [ProtectionEncryptAttPrefix, value]) NonCompliantOUs5_2 contains { "Name": OU, - "Value": concat(" ", [ - "Protection against encrypted attachments with scripts from untrusted senders is set to", - GetFriendlyValue5_2(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage5_2(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, + Events := utils.FilterEventsOU(LogEvents, concat("", ["Attachment safety Enable: ", "protect against attachments with scripts from untrusted senders"]), OU) count(Events) > 0 @@ -349,8 +386,18 @@ if { LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs5_2 contains { + "Name": OU, + "Value": NonComplianceMessage5_2(GetFriendlyEnabledValue(noEncrypt)) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + noEncrypt := settings.gmail_email_attachment_safety.enableAttachmentWithScriptsProtection + noEncrypt != true +} + tests contains { - "PolicyId": "GWS.GMAIL.5.2v0.3", + "PolicyId": GmailId5_2, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -358,14 +405,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - SettingName := "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check5_2_OK } tests contains { - "PolicyId": "GWS.GMAIL.5.2v0.3", + "PolicyId": GmailId5_2, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs5_2, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_2}, @@ -373,32 +419,37 @@ tests contains { "NoSuchEvent": false } if { - SettingName := "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check5_2_OK Status := count(NonCompliantOUs5_2) == 0 } #-- # -# Baseline GWS.GMAIL.5.3v0.3 +# Baseline GWS.GMAIL.5.3 #-- -GetFriendlyValue5_3(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId5_3 := utils.PolicyIdWithSuffix("GWS.GMAIL.5.3") + +LogMessage5_3 := "Attachment safety Enable: Protect against anomalous attachment types in emails" + +Check5_3_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage5_3, utils.TopLevelOU) + count(events) > 0 +} + +Check5_3_OK if {PolicyApiInUse} + +NonComplianceMessage5_3(value) := sprintf("Protection against anomalous attachment types in emails is set to: %s", + [value]) NonCompliantOUs5_3 contains { "Name": OU, - "Value": concat(" ", [ - "Protection against anomalous attachment types in emails is set to", - GetFriendlyValue5_3(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage5_3(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents Events := utils.FilterEventsOU(LogEvents, concat("", ["Attachment safety Enable: Protect against anomalous attachment types in emails"]), OU) @@ -408,8 +459,18 @@ if { LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs5_3 contains { + "Name": OU, + "Value": NonComplianceMessage5_3(GetFriendlyEnabledValue(protectAtt)) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + protectAtt := settings.gmail_email_attachment_safety.enableAnomalousAttachmentProtection + protectAtt != true +} + tests contains { - "PolicyId": "GWS.GMAIL.5.3v0.3", + "PolicyId": GmailId5_3, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -417,14 +478,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - SettingName := "Attachment safety Enable: Protect against anomalous attachment types in emails" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check5_3_OK } tests contains { - "PolicyId": "GWS.GMAIL.5.3v0.3", + "PolicyId": GmailId5_3, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs5_3, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_3}, @@ -432,31 +492,36 @@ tests contains { "NoSuchEvent": false } if { - SettingName := "Attachment safety Enable: Protect against anomalous attachment types in emails" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check5_3_OK Status := count(NonCompliantOUs5_3) == 0 } #-- # -# Baseline GWS.GMAIL.5.4v0.3 +# Baseline GWS.GMAIL.5.4 #-- -GetFriendlyValue5_4(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId5_4 := utils.PolicyIdWithSuffix("GWS.GMAIL.5.4") + +LogMessage5_4 := "Attachment safety Enable: automatically enables all future added settings" + +Check5_4_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage5_4, utils.TopLevelOU) + count(events) > 0 +} + +Check5_4_OK if {PolicyApiInUse} + +NonComplianceMessage5_4(value) := sprintf("Automatically enables all future added settings is set to: %s", + [value]) NonCompliantOUs5_4 contains { "Name": OU, - "Value": concat(" ", [ - "Automatically enables all future added settings is set to", - GetFriendlyValue5_4(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage5_4(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents Events := utils.FilterEventsOU(LogEvents, concat("", ["Attachment safety Enable: ", "automatically enables all future added settings"]), OU) @@ -466,8 +531,18 @@ if { LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs5_4 contains { + "Name": OU, + "Value": NonComplianceMessage5_4(GetFriendlyEnabledValue(futureAtt)) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + futureAtt := settings.gmail_email_attachment_safety.applyFutureRecommendedSettingsAutomatically + futureAtt != true +} + tests contains { - "PolicyId": "GWS.GMAIL.5.4v0.3", + "PolicyId": GmailId5_4, "Criticality": "Should", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -475,14 +550,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - SettingName := "Attachment safety Enable: automatically enables all future added settings" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check5_4_OK } tests contains { - "PolicyId": "GWS.GMAIL.5.4v0.3", + "PolicyId": GmailId5_4, "Criticality": "Should", "ReportDetails": utils.ReportDetails(NonCompliantOUs5_4, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_4}, @@ -490,19 +564,25 @@ tests contains { "NoSuchEvent": false } if { - SettingName := "Attachment safety Enable: automatically enables all future added settings" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check5_4_OK Status := count(NonCompliantOUs5_4) == 0 } #-- # -# Baseline GWS.GMAIL.5.5v0.3 +# Baseline GWS.GMAIL.5.5 #-- +GmailId5_5 := utils.PolicyIdWithSuffix("GWS.GMAIL.5.5") + +NonComplianceMessage5_5(types) := sprintf("%s attachment emails not removed from inbox", + [concat(", ", sort(types))]) + default NoSuchEvent5_5 := false -NoSuchEvent5_5 := true if { + +NoSuchEvent5_5 := false if { + PolicyApiInUse +} else := true if { SettingName := "Attachment safety Encrypted attachment protection setting action" Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) count(Events) == 0 @@ -527,7 +607,7 @@ AttachmentWithScriptsMessage(NewValueAttachmentWithScripts) else := "" AnomalousAttachmentMessage(NewValueAnomalousAttachment) - := "Emails with anamolous attachements" + := "Emails with anomalous attachments" if { NewValueAnomalousAttachment == "Show warning" } else := "" @@ -568,6 +648,7 @@ NonCompliantOUs5_5 contains { LastEventAttachmentWithScripts.NewValue, LastEventAnomalousAttachment.NewValue) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents EncryptedAttachmentEvents := utils.FilterEventsOU(LogEvents, "Attachment safety Encrypted attachment protection setting action", OU) @@ -592,8 +673,31 @@ NonCompliantOUs5_5 contains { ] } +AttachConfigs := [ + {"type": "anomalous type", + "setting": "anomalousAttachmentProtectionConsequence"}, + {"type": "encrypted", + "setting": "encryptedAttachmentProtectionConsequence"}, + {"type": "scripts", + "setting": "attachmentWithScriptsProtectionConsequence"} +] + +NonCompliantOUs5_5 contains { + "Name": OU, + "Value": NonComplianceMessage5_5(types) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + types := [config.type | + some config in AttachConfigs + consequence = settings.gmail_email_attachment_safety[config.setting] + not consequence in ["SPAM_FOLDER", "QUARANTINE"] + ] + count(types) > 0 +} + tests contains { - "PolicyId": "GWS.GMAIL.5.5v0.3", + "PolicyId": GmailId5_5, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -601,12 +705,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false NoSuchEvent5_5 } tests contains { - "PolicyId": "GWS.GMAIL.5.5v0.3", + "PolicyId": GmailId5_5, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs5_5, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_5}, @@ -620,11 +725,14 @@ if { #-- # -# Baseline GWS.GMAIL.5.6v0.3 +# Baseline GWS.GMAIL.5.6 #-- # No implementation steps provided for this policy + +GmailId5_6 := utils.PolicyIdWithSuffix("GWS.GMAIL.5.6") + tests contains { - "PolicyId": "GWS.GMAIL.5.6v0.3", + "PolicyId": GmailId5_6, "Criticality": "Should/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please check manually.", "ActualValue": "", @@ -640,34 +748,49 @@ tests contains { # Cannot be controlled at Group level # -# Baseline GWS.GMAIL.6.1v0.3 +# Baseline GWS.GMAIL.6.1 #-- -GetFriendlyValue6_1(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId6_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.6.1") + +LogMessage6_1 := "Links and external images safety Enable: identify links behind shortened URLs" + +Check6_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage6_1, utils.TopLevelOU) + count(events) > 0 +} + +Check6_1_OK if {PolicyApiInUse} + +NonComplianceMessage6_1(value) := sprintf("Identify links behind shortened URLs is: %s", + [value]) NonCompliantOUs6_1 contains { "Name": OU, - "Value": concat(" ", [ - "Identify links behind shortened URLs is", - GetFriendlyValue6_1(LastEvent.NewValue) - ]) -} -if { + "Value": NonComplianceMessage6_1(GetFriendlyEnabledValue(LastEvent.NewValue)) +} if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, - concat("", ["Links and external images safety Enable: identify links behind shortened URLs"]), OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage6_1, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "false" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs6_1 contains { + "Name": OU, + "Value": NonComplianceMessage6_1(GetFriendlyEnabledValue(shortLinks)) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + shortLinks := settings.gmail_links_and_external_images.enableShortenerScanning + shortLinks != true +} + tests contains { - "PolicyId": "GWS.GMAIL.6.1v0.3", + "PolicyId": GmailId6_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -675,14 +798,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - SettingName := "Links and external images safety Enable: identify links behind shortened URLs" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check6_1_OK } tests contains { - "PolicyId": "GWS.GMAIL.6.1v0.3", + "PolicyId": GmailId6_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs6_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs6_1}, @@ -690,41 +812,56 @@ tests contains { "NoSuchEvent": false } if { - SettingName := "Links and external images safety Enable: identify links behind shortened URLs" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check6_1_OK Status := count(NonCompliantOUs6_1) == 0 } #-- # -# Baseline GWS.GMAIL.6.2v0.3 +# Baseline GWS.GMAIL.6.2 #-- -GetFriendlyValue6_2(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId6_2 := utils.PolicyIdWithSuffix("GWS.GMAIL.6.2") + +LogMessage6_2 := "Links and external images safety Enable: scan linked images" + +Check6_2_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage6_2, utils.TopLevelOU) + count(events) > 0 +} + +Check6_2_OK if {PolicyApiInUse} + +NonComplianceMessage6_2(value) := sprintf("Scan linked images is: %s", + [value]) NonCompliantOUs6_2 contains { "Name": OU, - "Value": concat(" ", [ - "Scan linked images is", - GetFriendlyValue6_2(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage6_2(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "Links and external images safety Enable: scan linked images", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage6_2, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "false" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs6_2 contains { + "Name": OU, + "Value": NonComplianceMessage6_2(GetFriendlyEnabledValue(scanImages)) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + scanImages := settings.gmail_links_and_external_images.enableExternalImageScanning + scanImages != true +} + tests contains { - "PolicyId": "GWS.GMAIL.6.2v0.3", + "PolicyId": GmailId6_2, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -732,14 +869,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - SettingName := "Links and external images safety Enable: scan linked images" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check6_2_OK } tests contains { - "PolicyId": "GWS.GMAIL.6.2v0.3", + "PolicyId": GmailId6_2, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs6_2, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs6_2}, @@ -747,42 +883,59 @@ tests contains { "NoSuchEvent": false } if { - SettingName := "Links and external images safety Enable: scan linked images" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check6_2_OK Status := count(NonCompliantOUs6_2) == 0 } #-- # -# Baseline GWS.GMAIL.6.3v0.3 +# Baseline GWS.GMAIL.6.3 #-- -GetFriendlyValue6_3(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId6_3 := utils.PolicyIdWithSuffix("GWS.GMAIL.6.3") + +# NOTE: "unstrusted" really is the spelling the API uses: +LogMessage6_3 := sprintf("%s %s %s", ["Links and external images safety Enable:", + "show warning prompt for click on links", + "to unstrusted domains"]) + +Check6_3_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage6_3, utils.TopLevelOU) + count(events) > 0 +} + +Check6_3_OK if {PolicyApiInUse} + +NonComplianceMessage6_3(value) := sprintf("Show warning prompt for click on links to untrusted domains is: %s", + [value]) NonCompliantOUs6_3 contains { "Name": OU, - "Value": concat(" ", [ - "Show warning prompt for click on links to untrusted domains is", - GetFriendlyValue6_3(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage6_3(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, concat("", ["Links and external images safety Enable: ", - "show warning prompt for click on links to unstrusted domains"]), OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage6_3, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "false" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs6_3 contains { + "Name": OU, + "Value": NonComplianceMessage6_3(GetFriendlyEnabledValue(warnEnabled)) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + warnEnabled := settings.gmail_links_and_external_images.enableAggressiveWarningsOnUntrustedLinks + warnEnabled != true +} + tests contains { - "PolicyId": "GWS.GMAIL.6.3v0.3", + "PolicyId": GmailId6_3, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -790,17 +943,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - SettingName := concat("", [ - "Links and external images safety Enable: show warning prompt for click on links to ", - "unstrusted domains" # NOTE: "unstrusted" really is the spelling the API uses - ]) - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check6_3_OK } tests contains { - "PolicyId": "GWS.GMAIL.6.3v0.3", + "PolicyId": GmailId6_3, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs6_3, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs6_3}, @@ -808,46 +957,58 @@ tests contains { "NoSuchEvent": false } if { - SettingName := concat("", [ - "Links and external images safety Enable: show warning prompt for click on links to ", - "unstrusted domains" # NOTE: "unstrusted" really is the spelling the API uses - ]) - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check6_3_OK Status := count(NonCompliantOUs6_3) == 0 } #-- # -# Baseline GWS.GMAIL.6.4v0.3 +# Baseline GWS.GMAIL.6.4 #-- -GetFriendlyValue6_4(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId6_4 := utils.PolicyIdWithSuffix("GWS.GMAIL.6.4") + +LogMessage6_4 := sprintf("%s %s %s", ["Links and external images safety Enable:", + "automatically enables all future", + "added settings"]) + +Check6_4_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage6_4, utils.TopLevelOU) + count(events) > 0 +} + +Check6_4_OK if {PolicyApiInUse} + +NonComplianceMessage6_4(value) := sprintf("Apply future recommended settings automatically is: %s", + [value]) NonCompliantOUs6_4 contains { "Name": OU, - "Value": concat(" ", [ - "Apply future recommended settings automatically is", - GetFriendlyValue6_4(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage6_4(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, - concat("", ["Links and external images safety Enable: ", - "automatically enables all future added settings"]), OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage6_4, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "false" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs6_4 contains { + "Name": OU, + "Value": NonComplianceMessage6_4(GetFriendlyEnabledValue(applyFuture)) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + applyFuture := settings.gmail_links_and_external_images.applyFutureSettingsAutomatically + applyFuture != true +} + tests contains { - "PolicyId": "GWS.GMAIL.6.4v0.3", + "PolicyId": GmailId6_4, "Criticality": "Should", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -855,14 +1016,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - SettingName := "Links and external images safety Enable: automatically enables all future added settings" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check6_4_OK } tests contains { - "PolicyId": "GWS.GMAIL.6.4v0.3", + "PolicyId": GmailId6_4, "Criticality": "Should", "ReportDetails": utils.ReportDetails(NonCompliantOUs6_4, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs6_4}, @@ -870,19 +1030,20 @@ tests contains { "NoSuchEvent": false } if { - SettingName := "Links and external images safety Enable: automatically enables all future added settings" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check6_4_OK Status := count(NonCompliantOUs6_4) == 0 } #-- # -# Baseline GWS.GMAIL.6.5v0.3 +# Baseline GWS.GMAIL.6.5 #-- + +GmailId6_5 := utils.PolicyIdWithSuffix("GWS.GMAIL.6.5") + # No implementation steps provided for this policy tests contains { - "PolicyId": "GWS.GMAIL.6.5v0.3", + "PolicyId": GmailId6_5, "Criticality": "Should/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -895,38 +1056,54 @@ tests contains { ############### # -# Baseline GWS.GMAIL.7.1v0.3 +# Baseline GWS.GMAIL.7.1 #-- # No group level control -GetFriendlyValue7_1(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId7_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.7.1") + +LogMessage7_1 := sprintf("%s %s %s", ["Spoofing and authentication safety", + "Enable: protect against domain spoofing", + "using similar domain names"]) + +Check7_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage7_1, utils.TopLevelOU) + count(events) > 0 +} + +Check7_1_OK if {PolicyApiInUse} + +NonComplianceMessage7_1(value) := sprintf("Protect against domain spoofing using similar domain names is set to: %s", + [value]) NonCompliantOUs7_1 contains { "Name": OU, - "Value": concat(" ", [ - "Protect against domain spoofing using similar domain names is set to", - GetFriendlyValue7_1(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage7_1(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, concat("", [ - "Spoofing and authentication safety Enable: protect against domain spoofing using ", - "similar domain names" - ]), OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage7_1, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "false" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs7_1 contains { + "Name": OU, + "Value": NonComplianceMessage7_1(GetFriendlyEnabledValue(spoofProtect)) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + spoofProtect := settings.gmail_spoofing_and_authentication.detectDomainNameSpoofing + spoofProtect != true +} + tests contains { - "PolicyId": "GWS.GMAIL.7.1v0.3", + "PolicyId": GmailId7_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -934,17 +1111,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - SettingName := concat("", [ - "Spoofing and authentication safety Enable: protect against domain spoofing using ", - "similar domain names" - ]) - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check7_1_OK } tests contains { - "PolicyId": "GWS.GMAIL.7.1v0.3", + "PolicyId": GmailId7_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs7_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs7_1}, @@ -952,46 +1125,58 @@ tests contains { "NoSuchEvent": false } if { - SettingName := concat("", [ - "Spoofing and authentication safety Enable: protect against domain spoofing using ", - "similar domain names" - ]) - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check7_1_OK Status := count(NonCompliantOUs7_1) == 0 } #-- # -# Baseline GWS.GMAIL.7.2v0.3 +# Baseline GWS.GMAIL.7.2 #-- -GetFriendlyValue7_2(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId7_2 := utils.PolicyIdWithSuffix("GWS.GMAIL.7.2") + +LogMessage7_2 := sprintf("%s %s %s", ["Spoofing and authentication safety", + "Enable: protect against spoofing of", + "employee names"]) + +Check7_2_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage7_2, utils.TopLevelOU) + count(events) > 0 +} + +Check7_2_OK if {PolicyApiInUse} + +NonComplianceMessage7_2(value) := sprintf("Protect against spoofing of employee names is set to: %s", + [value]) NonCompliantOUs7_2 contains { "Name": OU, - "Value": concat(" ", [ - "Protect against spoofing of employee names is set to", - GetFriendlyValue7_2(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage7_2(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, - concat("", ["Spoofing and authentication safety Enable: ", - "protect against spoofing of employee names"]), OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage7_2, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "false" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs7_2 contains { + "Name": OU, + "Value": NonComplianceMessage7_2(GetFriendlyEnabledValue(spoofProtect)) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + spoofProtect := settings.gmail_spoofing_and_authentication.detectEmployeeNameSpoofing + spoofProtect != true +} + tests contains { - "PolicyId": "GWS.GMAIL.7.2v0.3", + "PolicyId": GmailId7_2, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -999,15 +1184,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - SettingName := concat("", ["Spoofing and authentication safety Enable: ", - "protect against spoofing of employee names"]) - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check7_2_OK } tests contains { - "PolicyId": "GWS.GMAIL.7.2v0.3", + "PolicyId": GmailId7_2, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs7_2, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs7_2}, @@ -1015,57 +1198,58 @@ tests contains { "NoSuchEvent": false } if { - SettingName := concat("", ["Spoofing and authentication safety Enable: ", - "protect against spoofing of employee names"]) - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check7_2_OK Status := count(NonCompliantOUs7_2) == 0 } #-- # -# Baseline GWS.GMAIL.7.3v0.3 +# Baseline GWS.GMAIL.7.3 #-- -GetFriendlyValue7_3(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId7_3 := utils.PolicyIdWithSuffix("GWS.GMAIL.7.3") + +LogMessage7_3 := sprintf("%s %s %s", ["Spoofing and authentication safety", + "Enable: protect against inbound emails", + "spoofing your domain"]) + +Check7_3_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage7_3, utils.TopLevelOU) + count(events) > 0 +} + +Check7_3_OK if {PolicyApiInUse} + +NonComplianceMessage7_3(value) := sprintf("Protect against inbound emails spoofing your domain is set to: %s", + [value]) NonCompliantOUs7_3 contains { "Name": OU, - "Value": concat(" ", [ - "Protect against inbound emails spoofing your domain is set to", - GetFriendlyValue7_3(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage7_3(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, - concat("", ["Spoofing and authentication safety Enable: ", - "protect against inbound emails spoofing your domain"]), OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage7_3, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "false" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } -NonCompliantOUs7_3 contains OU if { - some OU in utils.OUsWithEvents - SettingName := "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - Events := utils.FilterEventsOU(LogEvents, SettingName, OU) - # Ignore OUs without any events. We're already asserting that the - # top-level OU has at least one event; for all other OUs we assume - # they inherit from a parent OU if they have no events. - count(Events) > 0 - LastEvent := utils.GetLastEvent(Events) - LastEvent.NewValue == "false" - LastEvent.NewValue != "DELETE_APPLICATION_SETTING" +NonCompliantOUs7_3 contains { + "Name": OU, + "Value": NonComplianceMessage7_3(GetFriendlyEnabledValue(spoofProtect)) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + spoofProtect := settings.gmail_spoofing_and_authentication.detectDomainSpoofingFromUnauthenticatedSenders + spoofProtect != true } tests contains { - "PolicyId": "GWS.GMAIL.7.3v0.3", + "PolicyId": GmailId7_3, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -1073,14 +1257,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - SettingName := "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check7_3_OK } tests contains { - "PolicyId": "GWS.GMAIL.7.3v0.3", + "PolicyId": GmailId7_3, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs7_3, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs7_3}, @@ -1088,43 +1271,58 @@ tests contains { "NoSuchEvent": false } if { - SettingName := "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check7_3_OK Status := count(NonCompliantOUs7_3) == 0 } #-- # -# Baseline GWS.GMAIL.7.4v0.3 +# Baseline GWS.GMAIL.7.4 #-- -GetFriendlyValue7_4(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId7_4 := utils.PolicyIdWithSuffix("GWS.GMAIL.7.4") + +LogMessage7_4 := sprintf("%s %s %s", ["Spoofing and authentication safety", + "Enable: protect against any", + "unauthenticated emails"]) + +Check7_4_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage7_4, utils.TopLevelOU) + count(events) > 0 +} + +Check7_4_OK if {PolicyApiInUse} + +NonComplianceMessage7_4(value) := sprintf("Protect against any unauthenticated emails is set to: %s", + [value]) NonCompliantOUs7_4 contains { "Name": OU, - "Value": concat(" ", [ - "Protect against any unauthenticated emails is set to", - GetFriendlyValue7_4(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage7_4(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, - concat("", ["Spoofing and authentication safety Enable: ", - "protect against any unauthenticated emails"]), OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage7_4, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "false" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs7_4 contains { + "Name": OU, + "Value": NonComplianceMessage7_4(GetFriendlyEnabledValue(unauthEmail)) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + unauthEmail := settings.gmail_spoofing_and_authentication.detectUnauthenticatedEmails + unauthEmail != true +} + tests contains { - "PolicyId": "GWS.GMAIL.7.4v0.3", + "PolicyId": GmailId7_4, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -1132,14 +1330,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - SettingName := "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check7_4_OK } tests contains { - "PolicyId": "GWS.GMAIL.7.4v0.3", + "PolicyId": GmailId7_4, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs7_4, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs7_4}, @@ -1147,44 +1344,58 @@ tests contains { "NoSuchEvent": false } if { - SettingName := "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check7_4_OK Status := count(NonCompliantOUs7_4) == 0 } #-- # -# Baseline GWS.GMAIL.7.5v0.3 +# Baseline GWS.GMAIL.7.5 #-- -GetFriendlyValue7_5(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId7_5 := utils.PolicyIdWithSuffix("GWS.GMAIL.7.5") + +LogMessage7_5 := sprintf("%s %s %s", ["Spoofing and authentication safety", + "Enable: protect your Groups from", + "inbound emails spoofing your domain"]) + +Check7_5_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage7_5, utils.TopLevelOU) + count(events) > 0 +} + +Check7_5_OK if {PolicyApiInUse} + +NonComplianceMessage7_5(value) := sprintf("Protect your Groups from inbound emails spoofing your domain is set to: %s", + [value]) NonCompliantOUs7_5 contains { "Name": OU, - "Value": concat(" ", [ - "Protect your Groups from inbound emails spoofing your domain is set to", - GetFriendlyValue7_5(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage7_5(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, concat("", [ - "Spoofing and authentication safety Enable: protect your Groups from inbound emails ", - "spoofing your domain" - ]), OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage7_5, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "false" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs7_5 contains { + "Name": OU, + "Value": NonComplianceMessage7_5(GetFriendlyEnabledValue(detectSpoof)) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + detectSpoof := settings.gmail_spoofing_and_authentication.detectDomainSpoofingFromUnauthenticatedSenders + detectSpoof != true +} + tests contains { - "PolicyId": "GWS.GMAIL.7.5v0.3", + "PolicyId": GmailId7_5, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -1192,17 +1403,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - SettingName := concat("", [ - "Spoofing and authentication safety Enable: protect your Groups from inbound emails ", - "spoofing your domain" - ]) - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check7_5_OK } tests contains { - "PolicyId": "GWS.GMAIL.7.5v0.3", + "PolicyId": GmailId7_5, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs7_5, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs7_5}, @@ -1210,23 +1417,26 @@ tests contains { "NoSuchEvent": false } if { - SettingName := concat("", [ - "Spoofing and authentication safety Enable: protect your Groups from inbound emails ", - "spoofing your domain" - ]) - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check7_5_OK Status := count(NonCompliantOUs7_5) == 0 } #-- # -# Baseline GWS.GMAIL.7.6v0.3 +# Baseline GWS.GMAIL.7.6 #-- -# No such event is true if any of the revelant settings doesn't having any events +GmailId7_6 := utils.PolicyIdWithSuffix("GWS.GMAIL.7.6") + +NonComplianceMessage7_6(types) := sprintf("%s spoof emails not removed from inbox", + [concat(", ", sort(types))]) + +# No such event is true if any of the relevant settings doesn't having any events default NoSuchEvent7_6 := false -NoSuchEvent7_6 := true if { + +NoSuchEvent7_6 := false if { + PolicyApiInUse +} else := true if { SettingName := "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) @@ -1269,7 +1479,7 @@ UnauthenticatedEmailsMessage(NewValueUnauthenticatedEmails) := "Unauthenticated if { NewValueUnauthenticatedEmails in ["Show warning", "No action"] } else := "" -GroupEmailsMessage(NewValueGroupEmails) := "Inbound spoofing emails addresed to groups" +GroupEmailsMessage(NewValueGroupEmails) := "Inbound spoofing emails addressed to groups" if { NewValueGroupEmails == "Show warning" } else := "" @@ -1306,6 +1516,7 @@ NonCompliantOUs7_6 contains { LastEventInboundEmails.NewValue, LastEventUnauthenticatedEmails.NewValue, LastEventGroupEmails.NewValue) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents DomainNamesSetting := concat("", [ @@ -1348,8 +1559,30 @@ NonCompliantOUs7_6 contains { ] } +SpoofConfigs := [ + {"type": "domain", "setting": "domainSpoofingConsequence"}, + {"type": "domain name", "setting": "domainNameSpoofingConsequence"}, + {"type": "employee name", "setting": "employeeNameSpoofingConsequence"}, + {"type": "groups", "setting": "groupsSpoofingConsequence"}, + {"type": "unauthenticated", "setting": "unauthenticatedEmailConsequence"} +] + +NonCompliantOUs7_6 contains { + "Name": OU, + "Value": NonComplianceMessage7_6(types) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + types := [config.type | + some config in SpoofConfigs + consequence = settings.gmail_spoofing_and_authentication[config.setting] + not consequence in ["SPAM_FOLDER", "QUARANTINE"] + ] + count(types) > 0 +} + tests contains { - "PolicyId": "GWS.GMAIL.7.6v0.3", + "PolicyId": GmailId7_6, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -1357,12 +1590,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false NoSuchEvent7_6 } tests contains { - "PolicyId": "GWS.GMAIL.7.6v0.3", + "PolicyId": GmailId7_6, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs7_6, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs7_6}, @@ -1376,35 +1610,52 @@ if { #-- # -# Baseline GWS.GMAIL.7.7v0.3 +# Baseline GWS.GMAIL.7.7 #-- -GetFriendlyValue7_7(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId7_7 := utils.PolicyIdWithSuffix("GWS.GMAIL.7.7") + +LogMessage7_7 := sprintf("%s %s %s", ["Spoofing and authentication safety", + "Enable: automatically enables all", + "future added settings"]) + +Check7_7_OK if { + not PolicyApiInUse + events := utils.FilterEventsNoOU(LogEvents, LogMessage7_7) + count(events) > 0 +} + +Check7_7_OK if {PolicyApiInUse} + +NonComplianceMessage7_7(value) := sprintf("Automatically enable all future added settings is set to: %s", + [value]) NonCompliantOUs7_7 contains { "Name": OU, - "Value": concat(" ", [ - "Automatically enable all future added settings is set to", - GetFriendlyValue7_7(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage7_7(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, - concat("", ["Spoofing and authentication safety Enable: ", - "automatically enables all future added settings"]), OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage7_7, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "false" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs7_7 contains { + "Name": OU, + "Value": NonComplianceMessage7_7(GetFriendlyEnabledValue(applyFuture)) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + applyFuture := settings.gmail_spoofing_and_authentication.applyFutureSettingsAutomatically + applyFuture != true +} + tests contains { - "PolicyId": "GWS.GMAIL.7.7v0.3", + "PolicyId": GmailId7_7, "Criticality": "Should", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -1412,15 +1663,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - SettingName := - "Spoofing and authentication safety Enable: automatically enables all future added settings" - Events := utils.FilterEventsNoOU(LogEvents, SettingName) - count(Events) == 0 + not Check7_7_OK } tests contains { - "PolicyId": "GWS.GMAIL.7.7v0.3", + "PolicyId": GmailId7_7, "Criticality": "Should", "ReportDetails": utils.ReportDetails(NonCompliantOUs7_7, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs7_7}, @@ -1428,20 +1677,20 @@ tests contains { "NoSuchEvent": false } if { - SettingName := - "Spoofing and authentication safety Enable: automatically enables all future added settings" - Events := utils.FilterEventsNoOU(LogEvents, SettingName) - count(Events) > 0 + Check7_7_OK Status := count(NonCompliantOUs7_7) == 0 } #-- # -# Baseline GWS.GMAIL.7.8v0.3 +# Baseline GWS.GMAIL.7.8 #-- + +GmailId7_8 := utils.PolicyIdWithSuffix("GWS.GMAIL.7.8") + # No implementation steps provided for this policy tests contains { - "PolicyId": "GWS.GMAIL.7.8v0.3", + "PolicyId": GmailId7_8, "Criticality": "Should/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -1456,19 +1705,16 @@ tests contains { ############### # -# Baseline GWS.GMAIL.8.1v0.3 +# Baseline GWS.GMAIL.8.1 #-- -GetFriendlyValue8_1(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value + +GmailId8_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.8.1") NonCompliantOUs8_1 contains { "Name": OU, "Value": concat(" ", [ "User email uploads is set to", - GetFriendlyValue8_1(LastEvent.NewValue) + GetFriendlyEnabledValue(LastEvent.NewValue) ]) } if { @@ -1480,7 +1726,7 @@ if { } tests contains { - "PolicyId": "GWS.GMAIL.8.1v0.3", + "PolicyId": GmailId8_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -1494,7 +1740,7 @@ if { } tests contains { - "PolicyId": "GWS.GMAIL.8.1v0.3", + "PolicyId": GmailId8_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs8_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs8_1}, @@ -1513,8 +1759,11 @@ if { ############### # -# Baseline GWS.GMAIL.9.1v0.3 +# Baseline GWS.GMAIL.9.1 #-- + +GmailId9_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.9.1") + default NoSuchEvent9_1(_) := false NoSuchEvent9_1(TopLevelOU) := true if { @@ -1557,8 +1806,8 @@ if { count(PopEvents) > 0 LastPopEvent := utils.GetLastEvent(PopEvents) - ImapEnabled := (LastImapEvent.NewValue in ["DISABLED", "INHERIT_FROM_PARENT"]) == false - PopEnabled := (LastPopEvent.NewValue in ["false", "INHERIT_FROM_PARENT"]) == false + ImapEnabled := (LastImapEvent.NewValue in {"DISABLED", "INHERIT_FROM_PARENT"}) == false + PopEnabled := (LastPopEvent.NewValue in {"false", "INHERIT_FROM_PARENT"}) == false true in { ImapEnabled, PopEnabled @@ -1580,8 +1829,8 @@ if { count(PopEvents) > 0 LastPopEvent := utils.GetLastEvent(PopEvents) - ImapEnabled := (LastImapEvent.NewValue in ["DISABLED", "INHERIT_FROM_PARENT"]) == false - PopEnabled := (LastPopEvent.NewValue in ["false", "INHERIT_FROM_PARENT"]) == false + ImapEnabled := (LastImapEvent.NewValue in {"DISABLED", "INHERIT_FROM_PARENT"}) == false + PopEnabled := (LastPopEvent.NewValue in {"false", "INHERIT_FROM_PARENT"}) == false true in { ImapEnabled, PopEnabled @@ -1589,7 +1838,7 @@ if { } tests contains { - "PolicyId": "GWS.GMAIL.9.1v0.3", + "PolicyId": GmailId9_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -1602,7 +1851,7 @@ if { } tests contains { - "PolicyId": "GWS.GMAIL.9.1v0.3", + "PolicyId": GmailId9_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs9_1, NonCompliantGroups9_1), "ActualValue": {"NonCompliantOUs": NonCompliantOUs9_1, "NonCompliantGroups": NonCompliantGroups9_1}, @@ -1622,20 +1871,16 @@ if { ################ # -# Baseline GWS.GMAIL.10.1v0.3 +# Baseline GWS.GMAIL.10.1 #-- -GetFriendlyValue10_1(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId10_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.10.1") NonCompliantOUs10_1 contains { "Name": OU, "Value": concat(" ", [ "Automatically enable outlook sync is set to", - GetFriendlyValue10_1(LastEvent.NewValue) + GetFriendlyEnabledValue(LastEvent.NewValue) ]) } if { @@ -1648,7 +1893,7 @@ if { } tests contains { - "PolicyId": "GWS.GMAIL.10.1v0.3", + "PolicyId": GmailId10_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -1662,7 +1907,7 @@ if { } tests contains { - "PolicyId": "GWS.GMAIL.10.1v0.3", + "PolicyId": GmailId10_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs10_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs10_1}, @@ -1677,11 +1922,14 @@ if { #-- # -# Baseline GWS.GMAIL.10.2v0.3 +# Baseline GWS.GMAIL.10.2 #-- + +GmailId10_2 := utils.PolicyIdWithSuffix("GWS.GMAIL.10.2") + # No implementation steps provided for this policy tests contains { - "PolicyId": "GWS.GMAIL.10.2v0.3", + "PolicyId": GmailId10_2, "Criticality": "May/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -1695,33 +1943,51 @@ tests contains { ################ # -# Baseline GWS.GMAIL.11.1v0.3 +# Baseline GWS.GMAIL.11.1 #-- -GetFriendlyValue11_1(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId11_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.11.1") + +LogMessage11_1 := "ENABLE_EMAIL_AUTOFORWARDING" + +Check11_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage11_1, utils.TopLevelOU) + count(events) > 0 +} + +Check11_1_OK if {PolicyApiInUse} + +NonComplianceMessage11_1(value) := sprintf("Automatic email forwarding is set to: %s", + [value]) NonCompliantOUs11_1 contains { "Name": OU, - "Value": concat(" ", [ - "Automatically enable email autoforwarding is set to", - GetFriendlyValue11_1(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage11_1(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "ENABLE_EMAIL_AUTOFORWARDING", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage11_1, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "true" LastEvent.NewValue != "INHERIT_FROM_PARENT" } +NonCompliantOUs11_1 contains { + "Name": OU, + "Value": NonComplianceMessage11_1(GetFriendlyEnabledValue(autoforward)) +} +if { + some OU, settings in input.policies + GmailEnabled(OU) + autoforward := settings.gmail_auto_forwarding.enableAutoForwarding + autoforward != false +} + tests contains { - "PolicyId": "GWS.GMAIL.11.1v0.3", + "PolicyId": GmailId11_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -1729,13 +1995,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "ENABLE_EMAIL_AUTOFORWARDING", utils.TopLevelOU) - count(Events) == 0 + not Check11_1_OK } tests contains { - "PolicyId": "GWS.GMAIL.11.1v0.3", + "PolicyId": GmailId11_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs11_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs11_1}, @@ -1743,8 +2009,7 @@ tests contains { "NoSuchEvent": false } if { - Events := utils.FilterEventsOU(LogEvents, "ENABLE_EMAIL_AUTOFORWARDING", utils.TopLevelOU) - count(Events) > 0 + Check11_1_OK Status := count(NonCompliantOUs11_1) == 0 } #-- @@ -1755,20 +2020,16 @@ if { ################ # -# Baseline GWS.GMAIL.12.1v0.3 +# Baseline GWS.GMAIL.12.1 #-- -GetFriendlyValue12_1(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId12_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.12.1") NonCompliantOUs12_1 contains { "Name": OU, "Value": concat(" ", [ "Allow per-user outbound gateways is set to", - GetFriendlyValue12_1(LastEvent.NewValue) + GetFriendlyEnabledValue(LastEvent.NewValue) ]) } if { @@ -1780,7 +2041,7 @@ if { } tests contains { - "PolicyId": "GWS.GMAIL.12.1v0.3", + "PolicyId": GmailId12_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -1794,7 +2055,7 @@ if { } tests contains { - "PolicyId": "GWS.GMAIL.12.1v0.3", + "PolicyId": GmailId12_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs12_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs12_1}, @@ -1814,9 +2075,11 @@ if { ################ # -# Baseline GWS.GMAIL.13.1v0.3 +# Baseline GWS.GMAIL.13.1 #-- +GmailId13_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.13.1") + GetFriendlyValue13_1(Value) := "enabled" if { Value == "false" } else := "disabled" if { @@ -1840,7 +2103,7 @@ if { } tests contains { - "PolicyId": "GWS.GMAIL.13.1v0.3", + "PolicyId": GmailId13_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -1855,7 +2118,7 @@ if { } tests contains { - "PolicyId": "GWS.GMAIL.13.1v0.3", + "PolicyId": GmailId13_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs13_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs13_1}, @@ -1876,94 +2139,146 @@ if { ################ # -# Baseline GWS.GMAIL.14.1v0.3 -#-- -EmailAllowlistSettingDetailsStr(LastEvent) := Description if { - LastEvent.NewValue != "true" - Description := concat("", [ - "Email allowlists are enabled in ", - utils.TopLevelOU, - "." - ]) -} +# Baseline GWS.GMAIL.14.1 +#-- -EmailAllowlistSettingDetailsStr(LastEvent) := Description if { - LastEvent.NewValue == "true" - Description := concat("", [ - "Email allowlists are not enabled in ", - utils.TopLevelOU, - "." - ]) +GmailId14_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.14.1") + +LogMessage14_1 := "GmailIpWhitelistSpamFilteringProto is_empty" + +Check14_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage14_1, utils.TopLevelOU) + count(events) > 0 } +Check14_1_OK if {PolicyApiInUse} + +NonComplianceMessage14_1(Value, OU) := sprintf("Email allowlists are %s in %s.", + [Value, OU]) + +# Note that in the event logs, a STRING value of "false" means allowlists are +# enabled, but policy API checks for a boolean true value. + +GetFriendlyValue14_1(Value) := "enabled" if { + Value in {true, "false"} +} else := "disabled" if { + Value in {false, "true"} +} else := Value + tests contains { - "PolicyId": "GWS.GMAIL.14.1v0.3", + "PolicyId": GmailId14_1, "Criticality": "Should", - "ReportDetails": concat("", [ - "No relevant event in the current logs. ", - "While we are unable to determine the state from the logs, ", - "the default setting is compliant; manual check recommended." - ]), - "ActualValue": {"GmailIpWhitelistSpamFilteringProto is_empty": "No relevant event in the current logs"}, - "RequirementMet": true, + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": {LogMessage14_1: "No relevant event in the current logs"}, + "RequirementMet": DefaultSafe, "NoSuchEvent": true } if { - Events := utils.FilterEventsOU(LogEvents, "GmailIpWhitelistSpamFilteringProto is_empty", utils.TopLevelOU) - count(Events) == 0 + not PolicyApiInUse + DefaultSafe := true + not Check14_1_OK } tests contains { - "PolicyId": "GWS.GMAIL.14.1v0.3", + "PolicyId": GmailId14_1, "Criticality": "Should", - "ReportDetails": EmailAllowlistSettingDetailsStr(LastEvent), + "ReportDetails": NonComplianceMessage14_1(GetFriendlyValue14_1(LastEvent.NewValue), + utils.TopLevelOU), "ActualValue": {LastEvent.Setting: LastEvent.NewValue}, "RequirementMet": Status, "NoSuchEvent": false } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "GmailIpWhitelistSpamFilteringProto is_empty", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage14_1, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) Status := LastEvent.NewValue == "true" } -#-- +# This test applies only to the policy API - it is NOT shared with the events +# implementation. Similar to the above events implementation test, this test +# always returns a result, even if gmail is disabled - see how this is +# implemented by converting the enable status to 1/0 (whereas a false value +# would fail the tests conditional). + +tests contains { + "PolicyId": GmailId14_1, + "Criticality": "Should", + "ReportDetails": NonComplianceMessage14_1(GetFriendlyValue14_1(allowListCount > 0), + utils.TopLevelOU), + "ActualValue": {utils.TopLevelOU: allowList}, + "RequirementMet": allowListCount == 0, + "NoSuchEvent": false +} +if { + PolicyApiInUse + enabled := to_number(GmailEnabled(utils.TopLevelOU)) + settings := input.policies[utils.TopLevelOU] + allowList := settings.gmail_email_spam_filter_ip_allowlist.allowedIpAddresses + allowListCount := enabled * count(allowList) +} + +#-- ################ # GWS.GMAIL.15 # ################ # -# Baseline GWS.GMAIL.15.1v0.3 +# Baseline GWS.GMAIL.15.1 #-- +GmailId15_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.15.1") + +LogMessage15_1 := "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" + +Check15_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage15_1, utils.TopLevelOU) + count(events) > 0 +} + +Check15_1_OK if {PolicyApiInUse} + +NonComplianceMessage15_1(value) := sprintf("Enhanced pre-delivery message scanning is %s", + [value]) + GetFriendlyValue15_1(Value) := "enabled" if { - Value == "false" + Value in {true, "false"} } else := "disabled" if { - Value == "true" + Value in {false, "true"} } else := Value NonCompliantOUs15_1 contains { "Name": OU, - "Value": concat(" ", [ - "Enhanced pre-delivery message scanning is set to", - GetFriendlyValue15_1(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage15_1(GetFriendlyValue15_1(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, concat("", - ["DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email"]), OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage15_1, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "true" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs15_1 contains { + "Name": OU, + "Value": NonComplianceMessage15_1(GetFriendlyValue15_1(preScanning)) +} if { + some OU, settings in input.policies + GmailEnabled(OU) + preDelivery := settings.gmail_enhanced_pre_delivery_message_scanning + preScanning := preDelivery.enableImprovedSuspiciousContentDetection + preScanning != true +} + tests contains { - "PolicyId": "GWS.GMAIL.15.1v0.3", + "PolicyId": GmailId15_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -1971,14 +2286,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - SettingName := "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check15_1_OK } tests contains { - "PolicyId": "GWS.GMAIL.15.1v0.3", + "PolicyId": GmailId15_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs15_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs15_1}, @@ -1986,19 +2300,20 @@ tests contains { "NoSuchEvent": false } if { - SettingName := "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check15_1_OK Status := count(NonCompliantOUs15_1) == 0 } #-- # -# Baseline GWS.GMAIL.15.2v0.3 +# Baseline GWS.GMAIL.15.2 #-- + +GmailId15_2 := utils.PolicyIdWithSuffix("GWS.GMAIL.15.2") + # No implementation steps provided for this policy tests contains { - "PolicyId": "GWS.GMAIL.15.2v0.3", + "PolicyId": GmailId15_2, "Criticality": "Should/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -2012,20 +2327,16 @@ tests contains { ################ # -# Baseline GWS.GMAIL.16.1v0.3 +# Baseline GWS.GMAIL.16.1 #-- -GetFriendlyValue16_1(Value) := "enabled" if { - Value == "true" -} else := "disabled" if { - Value == "false" -} else := Value +GmailId16_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.16.1") NonCompliantOUs16_1 contains { "Name": OU, "Value": concat(" ", [ "Security sandbox is", - GetFriendlyValue16_1(LastEvent.NewValue) + GetFriendlyEnabledValue(LastEvent.NewValue) ]) } if { @@ -2038,7 +2349,7 @@ if { } tests contains { - "PolicyId": "GWS.GMAIL.16.1v0.3", + "PolicyId": GmailId16_1, "Criticality": "Should", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -2053,7 +2364,7 @@ if { } tests contains { - "PolicyId": "GWS.GMAIL.16.1v0.3", + "PolicyId": GmailId16_1, "Criticality": "Should", "ReportDetails": utils.ReportDetails(NonCompliantOUs16_1, []), "ActualValue": {"NonCompliantOUs": NonCompliantOUs16_1}, @@ -2069,11 +2380,14 @@ if { #-- # -# Baseline GWS.GMAIL.16.2v0.3 +# Baseline GWS.GMAIL.16.2 #-- + +GmailId16_2 := utils.PolicyIdWithSuffix("GWS.GMAIL.16.2") + # No implementation steps provided for this policy tests contains { - "PolicyId": "GWS.GMAIL.16.2v0.3", + "PolicyId": GmailId16_2, "Criticality": "Should/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -2087,12 +2401,15 @@ tests contains { ################ # -# Baseline GWS.GMAIL.17.1v0.3 +# Baseline GWS.GMAIL.17.1 #-- + +GmailId17_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.17.1") + # At this time we are unable to test because settings are configured in the GWS Admin Console # and not available within the generated logs tests contains { - "PolicyId": "GWS.GMAIL.17.1v0.3", + "PolicyId": GmailId17_1, "Criticality": "Should/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -2107,12 +2424,15 @@ tests contains { ################ # -# Baseline GWS.GMAIL.18.1v0.3 +# Baseline GWS.GMAIL.18.1 #-- + +GmailId18_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.18.1") + # At this time we are unable to test because settings are configured in the GWS Admin Console # and not available within the generated logs tests contains { - "PolicyId": "GWS.GMAIL.18.1v0.3", + "PolicyId": GmailId18_1, "Criticality": "Should/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -2122,12 +2442,15 @@ tests contains { #-- # -# Baseline GWS.GMAIL.18.2v0.3 +# Baseline GWS.GMAIL.18.2 #-- + +GmailId18_2 := utils.PolicyIdWithSuffix("GWS.GMAIL.18.2") + # At this time we are unable to test because settings are configured in the GWS Admin Console # and not available within the generated logs tests contains { - "PolicyId": "GWS.GMAIL.18.2v0.3", + "PolicyId": GmailId18_2, "Criticality": "Should/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -2137,12 +2460,15 @@ tests contains { #-- # -# Baseline GWS.GMAIL.18.3v0.3 +# Baseline GWS.GMAIL.18.3 #-- + +GmailId18_3 := utils.PolicyIdWithSuffix("GWS.GMAIL.18.3") + # At this time we are unable to test because settings are configured in the GWS Admin Console # and not available within the generated logs tests contains { - "PolicyId": "GWS.GMAIL.18.3v0.3", + "PolicyId": GmailId18_3, "Criticality": "Shall/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -2156,12 +2482,15 @@ tests contains { ################ # -# Baseline GWS.GMAIL.19.1v0.3 +# Baseline GWS.GMAIL.19.1 #-- + +GmailId19_1 := utils.PolicyIdWithSuffix("GWS.GMAIL.19.1") + # At this time we are unable to test because settings are configured in the GWS Admin Console # and not available within the generated logs tests contains { - "PolicyId": "GWS.GMAIL.19.1v0.3", + "PolicyId": GmailId19_1, "Criticality": "Shall/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -2171,10 +2500,13 @@ tests contains { #-- # -# Baseline GWS.GMAIL.19.2v0.3 +# Baseline GWS.GMAIL.19.2 #-- + +GmailId19_2 := utils.PolicyIdWithSuffix("GWS.GMAIL.19.2") + tests contains { - "PolicyId": "GWS.GMAIL.19.2v0.3", + "PolicyId": GmailId19_2, "Criticality": "Shall/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", @@ -2184,14 +2516,17 @@ tests contains { #-- # -# Baseline GWS.GMAIL.19.3v0.3 +# Baseline GWS.GMAIL.19.3 #-- + +GmailId19_3 := utils.PolicyIdWithSuffix("GWS.GMAIL.19.3") + tests contains { - "PolicyId": "GWS.GMAIL.19.3v0.3", + "PolicyId": GmailId19_3, "Criticality": "Shall/Not-Implemented", "ReportDetails": "Currently not able to be tested automatically; please manually check.", "ActualValue": "", "RequirementMet": false, "NoSuchEvent": false } -#-- \ No newline at end of file +#-- diff --git a/scubagoggles/rego/Groups.rego b/scubagoggles/rego/Groups.rego new file mode 100644 index 00000000..03876922 --- /dev/null +++ b/scubagoggles/rego/Groups.rego @@ -0,0 +1,502 @@ +package groups + +import future.keywords +import data.utils +import data.utils.PolicyApiInUse + +LogEvents := utils.GetEvents("groups_logs") + +GroupsEnabled(orgunit) := utils.AppEnabled(input.policies, "groups_for_business", orgunit) + +################ +# GWS.GROUPS.1 # +################ + +# +# Baseline GWS.GROUPS.1.1 +#-- + +GroupsId1_1 := utils.PolicyIdWithSuffix("GWS.GROUPS.1.1") + +LogMessage1_1 := "GroupsSharingSettingsProto collaboration_policy" + +Check1_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage1_1, utils.TopLevelOU) + count(events) > 0 +} + +Check1_1_OK if {PolicyApiInUse} + +GetFriendlyValue1_1(Value) := "Users in your domain only" if { + Value in {"CLOSED", "DOMAIN_USERS_ONLY"} +} else := "Any user" if { + Value in {"OPEN", "ANYONE_CAN_ACCESS"} +} else := Value + +NonComplianceMessage1_1(value) := sprintf("Group access set to: %s", [value]) + +NonCompliantOUs1_1 contains { + "Name": OU, + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1(LastEvent.NewValue)) +} if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage1_1, OU) + # Ignore OUs without any events. We're already asserting that the + # top-level OU has at least one event; for all other OUs we assume + # they inherit from a parent OU if they have no events. + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "CLOSED" +} + +NonCompliantOUs1_1 contains { + "Name": OU, + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1(whoCanShare)) +} if { + some OU, settings in input.policies + GroupsEnabled(OU) + whoCanShare := settings.groups_for_business_groups_sharing.collaborationCapability + whoCanShare != "DOMAIN_USERS_ONLY" +} + +tests contains { + "PolicyId": GroupsId1_1, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check1_1_OK +} + +tests contains { + "PolicyId": GroupsId1_1, + "Criticality": "Shall", + "ReportDetails": utils.ReportDetails(NonCompliantOUs1_1, []), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check1_1_OK + Status := count(NonCompliantOUs1_1) == 0 +} +#-- + +################ +# GWS.GROUPS.2 # +################ + +# +# Baseline GWS.GROUPS.2.1 +#-- + +GroupsId2_1 := utils.PolicyIdWithSuffix("GWS.GROUPS.2.1") + +LogMessage2_1 := "GroupsSharingSettingsProto owners_can_allow_external_members" + +Check2_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage2_1, utils.TopLevelOU) + count(events) > 0 +} + +Check2_1_OK if {PolicyApiInUse} + +GetFriendlyValue2_1(Value) := "Yes" if { + Value in {true, "true"} +} else := "No" if { + Value in {false, "false"} +} else := Value + +NonComplianceMessage2_1(value) := sprintf("Allowing external group members is set to: %s", [value]) + +NonCompliantOUs2_1 contains { + "Name": OU, + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1(LastEvent.NewValue)) +} if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage2_1, OU) + # Ignore OUs without any events. We're already asserting that the + # top-level OU has at least one event; for all other OUs we assume + # they inherit from a parent OU if they have no events. + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "false" +} + +NonCompliantOUs2_1 contains { + "Name": OU, + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1(allowExternal)) +} if { + some OU, settings in input.policies + GroupsEnabled(OU) + allowExternal := settings.groups_for_business_groups_sharing.ownersCanAllowExternalMembers + allowExternal != false +} + +tests contains { + "PolicyId": GroupsId2_1, + "Criticality": "Should", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check2_1_OK +} + +tests contains { + "PolicyId": GroupsId2_1, + "Criticality": "Should", + "ReportDetails": utils.ReportDetails(NonCompliantOUs2_1, []), + "ActualValue": {"NonCompliantOUs":NonCompliantOUs2_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check2_1_OK + Status := count(NonCompliantOUs2_1) == 0 +} +#-- + +################ +# GWS.GROUPS.3 # +################ + +# +# Baseline GWS.GROUPS.3.1 +#-- + +GroupsId3_1 := utils.PolicyIdWithSuffix("GWS.GROUPS.3.1") + +LogMessage3_1 := "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" + +Check3_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage3_1, utils.TopLevelOU) + count(events) > 0 +} + +Check3_1_OK if {PolicyApiInUse} + +GetFriendlyValue3_1(Value) := "Yes" if { + Value in {true, "true"} +} else := "No" if { + Value in {false, "false"} +} else := Value + +NonComplianceMessage3_1(value) := sprintf("Allowing external email is set to: %s", [value]) + +NonCompliantOUs3_1 contains { + "Name": OU, + "Value": NonComplianceMessage3_1(GetFriendlyValue3_1(LastEvent.NewValue)) +} if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage3_1, OU) + # Ignore OUs without any events. We're already asserting that the + # top-level OU has at least one event; for all other OUs we assume + # they inherit from a parent OU if they have no events. + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "false" +} + +NonCompliantOUs3_1 contains { + "Name": OU, + "Value": NonComplianceMessage3_1(GetFriendlyValue3_1(allowExternal)) +} if { + some OU, settings in input.policies + GroupsEnabled(OU) + allowExternal := settings.groups_for_business_groups_sharing.ownersCanAllowIncomingMailFromPublic + allowExternal != false +} + +tests contains { + "PolicyId": GroupsId3_1, + "Criticality": "Should", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check3_1_OK +} + +tests contains { + "PolicyId": GroupsId3_1, + "Criticality": "Should", + "ReportDetails": utils.ReportDetails(NonCompliantOUs3_1, []), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs3_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check3_1_OK + Status := count(NonCompliantOUs3_1) == 0 +} +#-- + +################ +# GWS.GROUPS.4 # +################ + +# +# Baseline GWS.GROUPS.4.1 +#-- + +GroupsId4_1 := utils.PolicyIdWithSuffix("GWS.GROUPS.4.1") + +LogMessage4_1 := "GroupsSharingSettingsProto who_can_create_groups" + +Check4_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage4_1, utils.TopLevelOU) + count(events) > 0 +} + +Check4_1_OK if {PolicyApiInUse} + +GetFriendlyValue4_1(Value) := "Administrators only" if { + Value == "ADMIN_ONLY" +} else := "Users in your domain only" if { + Value == "USERS_IN_DOMAIN" +} else := "Any user" if { + Value in {"ANYONE_CAN_CREATE", "WORLD"} +} else := Value + +NonComplianceMessage4_1(value) := sprintf("Groups can be created by: %s", [value]) + +NonCompliantOUs4_1 contains { + "Name": OU, + "Value": NonComplianceMessage4_1(GetFriendlyValue4_1(LastEvent.NewValue)) +} if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage4_1, OU) + # Ignore OUs without any events. We're already asserting that the + # top-level OU has at least one event; for all other OUs we assume + # they inherit from a parent OU if they have no events. + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "ADMIN_ONLY" +} + +NonCompliantOUs4_1 contains { + "Name": OU, + "Value": NonComplianceMessage4_1(GetFriendlyValue4_1(whoCreates)) +} if { + some OU, settings in input.policies + GroupsEnabled(OU) + whoCreates := settings.groups_for_business_groups_sharing.createGroupsAccessLevel + whoCreates != "ADMIN_ONLY" +} + +tests contains { + "PolicyId": GroupsId4_1, + "Criticality": "Should", + "ReportDetails":utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check4_1_OK +} + +tests contains { + "PolicyId": GroupsId4_1, + "Criticality": "Should", + "ReportDetails": utils.ReportDetails(NonCompliantOUs4_1, []), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs4_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check4_1_OK + Status := count(NonCompliantOUs4_1) == 0 +} +#-- + +################ +# GWS.GROUPS.5 # +################ + +# +# Baseline GWS.GROUPS.5.1 +#-- + +GroupsId5_1 := utils.PolicyIdWithSuffix("GWS.GROUPS.5.1") + +LogMessage5_1 := "GroupsSharingSettingsProto default_view_topics_access_level" + +Check5_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage5_1, utils.TopLevelOU) + count(events) > 0 +} + +Check5_1_OK if {PolicyApiInUse} + +GetFriendlyValue5_1(Value) := "Owners" if { + Value == "OWNERS" +} else := "Managers" if { + Value == "MANAGERS" +} else := "Group members only" if { + Value == "GROUP_MEMBERS" +} else := "Users in your domain only" if { + Value == "DOMAIN_USERS" +} else := "Any user" if { + Value in {"ANYONE_CAN_VIEW_TOPICS", "PUBLIC"} +} else := Value + +NonComplianceMessage5_1(value) := sprintf("Group conversations can be viewed by: %s", [value]) + +NonCompliantOUs5_1 contains { + "Name": OU, + "Value": NonComplianceMessage5_1(GetFriendlyValue5_1(LastEvent.NewValue)) +} if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage5_1, OU) + # Ignore OUs without any events. We're already asserting that the + # top-level OU has at least one event; for all other OUs we assume + # they inherit from a parent OU if they have no events. + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "MEMBERS" +} + +NonCompliantOUs5_1 contains { + "Name": OU, + "Value": NonComplianceMessage5_1(GetFriendlyValue5_1(whoCanView)) +} if { + some OU, settings in input.policies + GroupsEnabled(OU) + whoCanView := settings.groups_for_business_groups_sharing.viewTopicsDefaultAccessLevel + whoCanView != "GROUP_MEMBERS" +} + +tests contains { + "PolicyId": GroupsId5_1, + "Criticality": "Should", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue": "No relevant event in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := false + not Check5_1_OK +} + +tests contains { + "PolicyId": GroupsId5_1, + "Criticality": "Should", + "ReportDetails": utils.ReportDetails(NonCompliantOUs5_1, []), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check5_1_OK + Status := count(NonCompliantOUs5_1) == 0 +} +#-- + +################ +# GWS.GROUPS.6 # +################ + +# +# Baseline GWS.GROUPS.6.1 +#-- + +GroupsId6_1 := utils.PolicyIdWithSuffix("GWS.GROUPS.6.1") + +LogMessage6_1 := "GroupsSharingSettingsProto allow_unlisted_groups" + +Check6_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage6_1, utils.TopLevelOU) + count(events) > 0 +} + +Check6_1_OK if {PolicyApiInUse} + +GetFriendlyValue6_1(Value) := "Yes" if { + Value in {true, "true"} +} else := "No" if { + Value in {false, "false"} +} else := Value + +NonComplianceMessage6_1(value) := sprintf("Group may be hidden: %s", [value]) + +NonCompliantOUs6_1 contains { + "Name": OU, + "Value": NonComplianceMessage6_1(GetFriendlyValue6_1(LastEvent.NewValue)) +} if { + not PolicyApiInUse + some OU in utils.OUsWithEvents + Events := utils.FilterEventsOU(LogEvents, LogMessage6_1, OU) + # Ignore OUs without any events. We're already asserting that the + # top-level OU has at least one event; for all other OUs we assume + # they inherit from a parent OU if they have no events. + count(Events) > 0 + LastEvent := utils.GetLastEvent(Events) + LastEvent.NewValue != "false" +} + +NonCompliantOUs6_1 contains { + "Name": OU, + "Value": NonComplianceMessage6_1(GetFriendlyValue6_1(canHideGroups)) +} if { + some OU, settings in input.policies + GroupsEnabled(OU) + canHideGroups := settings.groups_for_business_groups_sharing.ownersCanHideGroups + canHideGroups != false +} + +tests contains { + "PolicyId": GroupsId6_1, + "Criticality": "Shall", + "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), + "ActualValue":"No relevant event in the current logs", + "RequirementMet": DefaultSafe, + "NoSuchEvent": true +} +if { + not PolicyApiInUse + DefaultSafe := true + not Check6_1_OK +} + +tests contains { + "PolicyId": GroupsId6_1, + "Criticality": "Shall", + "ReportDetails":utils.ReportDetails(NonCompliantOUs6_1, []), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs6_1}, + "RequirementMet": Status, + "NoSuchEvent": false +} +if { + Check6_1_OK + Status := count(NonCompliantOUs6_1) == 0 +} diff --git a/rego/Meet.rego b/scubagoggles/rego/Meet.rego similarity index 52% rename from rego/Meet.rego rename to scubagoggles/rego/Meet.rego index f0728c5b..9f6db45f 100644 --- a/rego/Meet.rego +++ b/scubagoggles/rego/Meet.rego @@ -1,7 +1,11 @@ package meet -import data.utils import future.keywords +import data.utils +import data.utils.GetFriendlyEnabledValue +import data.utils.PolicyApiInUse + +MeetEnabled(orgunit) := utils.AppEnabled(input.policies, "meet", orgunit) LogEvents := utils.GetEvents("meet_logs") @@ -10,22 +14,40 @@ LogEvents := utils.GetEvents("meet_logs") ############## # -# Baseline GWS.MEET.1.1v0.3 +# Baseline GWS.MEET.1.1 #-- + +MeetId1_1 := utils.PolicyIdWithSuffix("GWS.MEET.1.1") + +LogMessage1_1 := "SafetyDomainLockProto users_allowed_to_join" + +Check1_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage1_1, utils.TopLevelOU) + count(events) > 0 +} + +Check1_1_OK if {PolicyApiInUse} + +NonComplianceMessage1_1(value) := sprintf("Who can join meetings is set to: %s", + [value]) + GetFriendlyValue1_1(Value) := "all users (including users not signed in with a Google account)" if { Value == "ALL" +} else := "users in the same organization" if { + Value == "SAME_ORGANIZATION_ONLY" +} else := "logged in users" if { + Value == "LOGGED_IN" } else := Value NonCompliantOUs1_1 contains { "Name": OU, - "Value": concat(" ", [ - "Who can join meetings is set to", - GetFriendlyValue1_1(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "SafetyDomainLockProto users_allowed_to_join", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage1_1, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "ALL" @@ -34,23 +56,30 @@ if { NonCompliantGroups1_1 contains { "Name": Group, - "Value": concat(" ", [ - "Who can join meetings is set to", - GetFriendlyValue1_1(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1(LastEvent.NewValue)) } if { + not PolicyApiInUse some Group in utils.GroupsWithEvents - SettingName := "SafetyDomainLockProto users_allowed_to_join" - Events := utils.FilterEventsGroup(LogEvents, SettingName, Group) + Events := utils.FilterEventsGroup(LogEvents, LogMessage1_1, Group) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "ALL" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs1_1 contains { + "Name": OU, + "Value": NonComplianceMessage1_1(GetFriendlyValue1_1(meetAccess)) +} if { + some OU, settings in input.policies + MeetEnabled(OU) + meetAccess := settings.meet_safety_domain.usersAllowedToJoin + not meetAccess in ["SAME_ORGANIZATION_ONLY", "LOGGED_IN"] +} + tests contains { - "PolicyId": "GWS.MEET.1.1v0.3", + "PolicyId": MeetId1_1, "Criticality": "Should", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event for the top-level OU in the current logs", @@ -58,13 +87,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "SafetyDomainLockProto users_allowed_to_join", utils.TopLevelOU) - count(Events) == 0 + not Check1_1_OK } tests contains { - "PolicyId": "GWS.MEET.1.1v0.3", + "PolicyId": MeetId1_1, "Criticality": "Should", "ReportDetails": utils.ReportDetails(NonCompliantOUs1_1, NonCompliantGroups1_1), "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_1, "NonCompliantGroups": NonCompliantGroups1_1}, @@ -72,8 +101,7 @@ tests contains { "NoSuchEvent": false } if { - Events := utils.FilterEventsOU(LogEvents, "SafetyDomainLockProto users_allowed_to_join", utils.TopLevelOU) - count(Events) > 0 + Check1_1_OK Conditions := {count(NonCompliantOUs1_1) == 0, count(NonCompliantGroups1_1) == 0} Status := (false in Conditions) == false } @@ -84,22 +112,40 @@ if { ############## # -# Baseline GWS.MEET.2.1v0.3 +# Baseline GWS.MEET.2.1 #-- -GetFriendlyValue2_1(Value) := "any meetings, including meetings created with personal accounts" if { + +MeetId2_1 := utils.PolicyIdWithSuffix("GWS.MEET.2.1") + +LogMessage2_1 := "SafetyAccessLockProto meetings_allowed_to_join" + +Check2_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage2_1, utils.TopLevelOU) + count(events) > 0 +} + +Check2_1_OK if {PolicyApiInUse} + +NonComplianceMessage2_1(value) := sprintf("What meetings can users join is set to: %s", + [value]) + +GetFriendlyValue2_1(Value) := "any meetings (including meetings created with personal accounts)" if { Value == "ALL" +} else := "meetings hosted by the same organization" if { + Value == "SAME_ORGANIZATION_ONLY" +} else := "meetings hosted by any workspace organization" if { + Value == "ANY_WORKSPACE_ORGANIZATION" } else := Value NonCompliantOUs2_1 contains { "Name": OU, - "Value": concat(" ", [ - "What meetings can org users join is set to", - GetFriendlyValue2_1(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "SafetyAccessLockProto meetings_allowed_to_join", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage2_1, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "ALL" @@ -108,23 +154,30 @@ if { NonCompliantGroups2_1 contains { "Name": Group, - "Value": concat(" ", [ - "What meetings can org users join is set to", - GetFriendlyValue2_1(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1(LastEvent.NewValue)) } if { + not PolicyApiInUse some Group in utils.GroupsWithEvents - SettingName := "SafetyAccessLockProto meetings_allowed_to_join" - Events := utils.FilterEventsGroup(LogEvents, SettingName, Group) + Events := utils.FilterEventsGroup(LogEvents, LogMessage2_1, Group) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "ALL" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs2_1 contains { + "Name": OU, + "Value": NonComplianceMessage2_1(GetFriendlyValue2_1(meetAccess)) +} if { + some OU, settings in input.policies + MeetEnabled(OU) + meetAccess := settings.meet_safety_access.meetingsAllowedToJoin + not meetAccess in ["SAME_ORGANIZATION_ONLY", "ANY_WORKSPACE_ORGANIZATION"] +} + tests contains { - "PolicyId": "GWS.MEET.2.1v0.3", + "PolicyId": MeetId2_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -132,23 +185,24 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "SafetyAccessLockProto meetings_allowed_to_join", utils.TopLevelOU) - count(Events) == 0 + not Check2_1_OK } tests contains { - "PolicyId": "GWS.MEET.2.1v0.3", + "PolicyId": MeetId2_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs2_1, NonCompliantGroups2_1), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs2_1, "NonCompliantGroups": NonCompliantGroups2_1}, + "ActualValue": {"NonCompliantOUs": NonCompliantOUs2_1, + "NonCompliantGroups": NonCompliantGroups2_1}, "RequirementMet": Status, "NoSuchEvent": false } if { - Events := utils.FilterEventsOU(LogEvents, "SafetyAccessLockProto meetings_allowed_to_join", utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs2_1) == 0, count(NonCompliantGroups2_1) == 0} + Check2_1_OK + Conditions := {count(NonCompliantOUs2_1) == 0, + count(NonCompliantGroups2_1) == 0} Status := (false in Conditions) == false } #-- @@ -158,22 +212,32 @@ if { ############## # -# Baseline GWS.MEET.3.1v0.3 +# Baseline GWS.MEET.3.1 #-- -GetFriendlyValue3_1(Value) := "off" if { - Value == "false" -} else := Value + +MeetId3_1 := utils.PolicyIdWithSuffix("GWS.MEET.3.1") + +LogMessage3_1 := "SafetyModerationLockProto host_management_enabled" + +Check3_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage3_1, utils.TopLevelOU) + count(events) > 0 +} + +Check3_1_OK if {PolicyApiInUse} + +NonComplianceMessage3_1(value) := sprintf("Host management when video calls start is: %s", + [value]) NonCompliantOUs3_1 contains { "Name": OU, - "Value": concat(" ", [ - "Host management when video calls start is set to", - GetFriendlyValue3_1(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage3_1(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - Events := utils.FilterEventsOU(LogEvents, "SafetyModerationLockProto host_management_enabled", OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage3_1, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "false" @@ -182,23 +246,30 @@ if { NonCompliantGroups3_1 contains { "Name": Group, - "Value": concat(" ", [ - "Host management when video calls start is set to", - GetFriendlyValue3_1(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage3_1(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some Group in utils.GroupsWithEvents - SettingName := "SafetyModerationLockProto host_management_enabled" - Events := utils.FilterEventsGroup(LogEvents, SettingName, Group) + Events := utils.FilterEventsGroup(LogEvents, LogMessage3_1, Group) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "false" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs3_1 contains { + "Name": OU, + "Value": NonComplianceMessage3_1(GetFriendlyEnabledValue(hostMgt)) +} if { + some OU, settings in input.policies + MeetEnabled(OU) + hostMgt := settings.meet_safety_host_management.enableHostManagement + hostMgt != true +} + tests contains { - "PolicyId": "GWS.MEET.3.1v0.3", + "PolicyId": MeetId3_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -206,22 +277,23 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - Events := utils.FilterEventsOU(LogEvents, "SafetyModerationLockProto host_management_enabled", utils.TopLevelOU) - count(Events) == 0 + not Check3_1_OK } tests contains { - "PolicyId": "GWS.MEET.3.1v0.3", + "PolicyId": MeetId3_1, "Criticality": "Shall", - "ReportDetails": utils.ReportDetails(NonCompliantOUs3_1, NonCompliantGroups3_1), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs3_1, "NonCompliantGroups": NonCompliantGroups3_1}, + "ReportDetails": utils.ReportDetails(NonCompliantOUs3_1, + NonCompliantGroups3_1), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs3_1, + "NonCompliantGroups": NonCompliantGroups3_1}, "RequirementMet": Status, "NoSuchEvent": false } if { - Events := utils.FilterEventsOU(LogEvents, "SafetyModerationLockProto host_management_enabled", utils.TopLevelOU) - count(Events) > 0 + Check3_1_OK Conditions := {count(NonCompliantOUs3_1) == 0, count(NonCompliantGroups3_1) == 0} Status := (false in Conditions) == false } @@ -232,23 +304,34 @@ if { ############## # -# Baseline GWS.MEET.4.1v0.3 +# Baseline GWS.MEET.4.1 #-- -GetFriendlyValue4_1(Value) := "no warning label" if { - Value == "false" -} else := Value + +MeetId4_1 := utils.PolicyIdWithSuffix("GWS.MEET.4.1") + +LogMessage4_1 := concat("", ["Warn for external participants External or ", + "unidentified participants in a meeting are ", + "given a label"]) + +Check4_1_OK if { + not PolicyApiInUse + events := utils.FilterEventsOU(LogEvents, LogMessage4_1, utils.TopLevelOU) + count(events) > 0 +} + +Check4_1_OK if {PolicyApiInUse} + +NonComplianceMessage4_1(value) := sprintf("Warning label for external or unidentified meeting participants is: %s", + [value]) NonCompliantOUs4_1 contains { "Name": OU, - "Value": concat(" ", [ - "Warning label for external or unidentified meeting participants is set to", - GetFriendlyValue4_1(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage4_1(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some OU in utils.OUsWithEvents - SettingName := "Warn for external participants External or unidentified participants in a meeting are given a label" - Events := utils.FilterEventsOU(LogEvents, SettingName, OU) + Events := utils.FilterEventsOU(LogEvents, LogMessage4_1, OU) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "false" @@ -257,23 +340,30 @@ if { NonCompliantGroups4_1 contains { "Name": Group, - "Value": concat(" ", [ - "Warning label for external or unidentified meeting participants is set to", - GetFriendlyValue4_1(LastEvent.NewValue) - ]) + "Value": NonComplianceMessage4_1(GetFriendlyEnabledValue(LastEvent.NewValue)) } if { + not PolicyApiInUse some Group in utils.GroupsWithEvents - SettingName := "Warn for external participants External or unidentified participants in a meeting are given a label" - Events := utils.FilterEventsGroup(LogEvents, SettingName, Group) + Events := utils.FilterEventsGroup(LogEvents, LogMessage4_1, Group) count(Events) > 0 LastEvent := utils.GetLastEvent(Events) LastEvent.NewValue == "false" LastEvent.NewValue != "DELETE_APPLICATION_SETTING" } +NonCompliantOUs4_1 contains { + "Name": OU, + "Value": NonComplianceMessage4_1(GetFriendlyEnabledValue(extWarn)) +} if { + some OU, settings in input.policies + MeetEnabled(OU) + extWarn := settings.meet_safety_external_participants.enableExternalLabel + extWarn != true +} + tests contains { - "PolicyId": "GWS.MEET.4.1v0.3", + "PolicyId": MeetId4_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -281,14 +371,13 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := true - SettingName := "Warn for external participants External or unidentified participants in a meeting are given a label" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) == 0 + not Check4_1_OK } tests contains { - "PolicyId": "GWS.MEET.4.1v0.3", + "PolicyId": MeetId4_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs4_1, NonCompliantGroups4_1), "ActualValue": {"NonCompliantOUs": NonCompliantOUs4_1, "NonCompliantGroups": NonCompliantGroups4_1}, @@ -296,9 +385,7 @@ tests contains { "NoSuchEvent": false } if { - SettingName := "Warn for external participants External or unidentified participants in a meeting are given a label" - Events := utils.FilterEventsOU(LogEvents, SettingName, utils.TopLevelOU) - count(Events) > 0 + Check4_1_OK Conditions := {count(NonCompliantOUs4_1) == 0, count(NonCompliantGroups4_1) == 0} Status := (false in Conditions) == false } @@ -309,8 +396,11 @@ if { ############## # -# Baseline GWS.MEET.5.1v0.3 +# Baseline GWS.MEET.5.1 #-- + +MeetId5_1 := utils.PolicyIdWithSuffix("GWS.MEET.5.1") + NonCompliantOUs5_1 contains { "Name": OU, "Value": "Users can receive calls from anyone" @@ -338,7 +428,7 @@ if { } tests contains { - "PolicyId": "GWS.MEET.5.1v0.3", + "PolicyId": MeetId5_1, "Criticality": "Shall", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -353,7 +443,7 @@ if { } tests contains { - "PolicyId": "GWS.MEET.5.1v0.3", + "PolicyId": MeetId5_1, "Criticality": "Shall", "ReportDetails": utils.ReportDetails(NonCompliantOUs5_1, NonCompliantGroups5_1), "ActualValue": {"NonCompliantOUs": NonCompliantOUs5_1, "NonCompliantGroups": NonCompliantGroups5_1}, diff --git a/rego/Rules.rego b/scubagoggles/rego/Rules.rego similarity index 98% rename from rego/Rules.rego rename to scubagoggles/rego/Rules.rego index 9bc82cd8..eb85e395 100644 --- a/rego/Rules.rego +++ b/scubagoggles/rego/Rules.rego @@ -1,5 +1,6 @@ package rules import future.keywords +import data.utils FilterAlertsEvents(RuleName) := FilteredEvents if { @@ -344,9 +345,12 @@ EmailOnlyRules := { # # This pair of tests handles all of the above rules with alert center actions #-- + +CommonControlsId13_1 := utils.PolicyIdWithSuffix("GWS.COMMONCONTROLS.13.1") + tests contains { "Requirement": Rule.RuleName, - "PolicyId": "GWS.COMMONCONTROLS.13.1v0.3", + "PolicyId": CommonControlsId13_1, "Criticality": Rule.Criticality, "ReportDetails": Rule.Details, "ActualValue": Events, @@ -361,7 +365,7 @@ if { tests contains { "Requirement": Rule.RuleName, - "PolicyId": "GWS.COMMONCONTROLS.13.1v0.3", + "PolicyId": CommonControlsId13_1, "Criticality": Rule.Criticality, "ReportDetails": Rule.Details, "ActualValue": Events, @@ -382,7 +386,7 @@ if { #-- tests contains { "Requirement": Rule.RuleName, - "PolicyId": "GWS.COMMONCONTROLS.13.1v0.3", + "PolicyId": CommonControlsId13_1, "Criticality": Rule.Criticality, "ReportDetails": Rule.Details, "ActualValue": Events, @@ -397,7 +401,7 @@ if { tests contains { "Requirement": Rule.RuleName, - "PolicyId": "GWS.COMMONCONTROLS.13.1v0.3", + "PolicyId": CommonControlsId13_1, "Criticality": Rule.Criticality, "ReportDetails": Rule.Details, "ActualValue": Events, @@ -414,4 +418,4 @@ if { contains(LastEvent.Change, "receivers changed from NULL to") } } -#-- \ No newline at end of file +#-- diff --git a/rego/Sites.rego b/scubagoggles/rego/Sites.rego similarity index 72% rename from rego/Sites.rego rename to scubagoggles/rego/Sites.rego index 75f42a78..c9640e64 100644 --- a/rego/Sites.rego +++ b/scubagoggles/rego/Sites.rego @@ -1,7 +1,10 @@ package sites -import data.utils import future.keywords +import data.utils +import data.utils.PolicyApiInUse + +SitesEnabled(orgunit) := utils.AppEnabled(input.policies, "sites", orgunit) FilterEventsOU(OrgUnit) := FilteredEvents if { # If there exists at least the root OU and 1 more OU @@ -70,12 +73,15 @@ if { ############### # -# Baseline GWS.SITES.1.1v0.3 +# Baseline GWS.SITES.1.1 #-- +ServiceStatusOnMessage := "Service status for Sites is ON." + NonCompliantOUs1_1 contains { "Name": OU, - "Value": "Service status for Sites is ON." + "Value": ServiceStatusOnMessage } if { + not PolicyApiInUse some OU in utils.OUsWithEvents Events := FilterEventsOU(OU) # Ignore OUs without any events. We're already asserting that the @@ -89,8 +95,9 @@ NonCompliantOUs1_1 contains { NonCompliantGroups1_1 contains { "Name": Group, - "Value": "Service status for Sites is ON." + "Value": ServiceStatusOnMessage } if { + not PolicyApiInUse some Group in utils.GroupsWithEvents Events := FilterEventsGroup(Group) # Ignore Groups without any events. @@ -100,8 +107,29 @@ NonCompliantGroups1_1 contains { LastEvent.NewValue != "INHERIT_FROM_PARENT" } +NonCompliantOUs1_1 contains { + "Name": OU, + "Value": ServiceStatusOnMessage +} if { + some OU, settings in input.policies + SitesEnabled(OU) +} + +# This check is done a few times below. It's True if either the policy API +# is in use or there is at least one event returned for the top-level orgunit. + +CheckOK if { + not PolicyApiInUse + events := FilterEventsOU(utils.TopLevelOU) + count(events) > 0 +} + +CheckOK if {PolicyApiInUse} + +SitesId1_1 := utils.PolicyIdWithSuffix("GWS.SITES.1.1") + tests contains { - "PolicyId": "GWS.SITES.1.1v0.3", + "PolicyId": SitesId1_1, "Criticality": "Should", "ReportDetails": utils.NoSuchEventDetails(DefaultSafe, utils.TopLevelOU), "ActualValue": "No relevant event in the current logs", @@ -109,23 +137,25 @@ tests contains { "NoSuchEvent": true } if { + not PolicyApiInUse DefaultSafe := false - Events := FilterEventsOU(utils.TopLevelOU) - count(Events) == 0 + not CheckOK } tests contains { - "PolicyId": "GWS.SITES.1.1v0.3", + "PolicyId": SitesId1_1, "Criticality": "Should", - "ReportDetails":utils.ReportDetails(NonCompliantOUs1_1, NonCompliantGroups1_1), - "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_1, "NonCompliantGroups": NonCompliantGroups1_1}, + "ReportDetails":utils.ReportDetails(NonCompliantOUs1_1, + NonCompliantGroups1_1), + "ActualValue": {"NonCompliantOUs": NonCompliantOUs1_1, + "NonCompliantGroups": NonCompliantGroups1_1}, "RequirementMet": Status, "NoSuchEvent": false } if { - Events := FilterEventsOU(utils.TopLevelOU) - count(Events) > 0 - Conditions := {count(NonCompliantOUs1_1) == 0, count(NonCompliantGroups1_1) == 0} + CheckOK + Conditions := {count(NonCompliantOUs1_1) == 0, + count(NonCompliantGroups1_1) == 0} Status := (false in Conditions) == false } -#-- \ No newline at end of file +#-- diff --git a/rego/Utils.rego b/scubagoggles/rego/Utils.rego similarity index 63% rename from rego/Utils.rego rename to scubagoggles/rego/Utils.rego index eb00bcbb..333a41b8 100644 --- a/rego/Utils.rego +++ b/scubagoggles/rego/Utils.rego @@ -1,6 +1,26 @@ package utils import future.keywords +# This is for use in versioning the baseline policy identifiers. Because all +# policy identifiers have the same baseline version suffix, it makes sense +# to define the version once here, so it only has to be changed once. The +# policy identifiers are created with the PolicyIdWithSuffix() function. +# +# The baseline version suffix value is included by the Orchestrator in the +# input data for normal policy evaluation. For testing, the version suffix +# is not required in the input data, as the default will be used and the +# results are only processed by OPA (and not the Reporter, which WILL look +# for matches between policy IDs in the Markdown and OPA results). + +default BaseVersionSuffix := "vM.m" + +BaseVersionSuffix := input.baseline_suffix if { + "baseline_suffix" in object.keys(input)} + +PolicyIdWithSuffix(PolicyIdPrefix) := sprintf("%s%s", + [PolicyIdPrefix, + BaseVersionSuffix]) + NoSuchEventDetails(DefaultSafe, TopLevelOU) := Message if { DefaultSafe == true Message := concat("", [ @@ -47,39 +67,18 @@ ReportDetailsBoolean(true) := "Requirement met." ReportDetailsBoolean(false) := "Requirement not met." -ReportDetailsDetailedOU(_, NonCompOUs) := "Requirement met in all OUs." if { - count(NonCompOUs) == 0 -} +EnumOUSettings(NonCompOUs) := NonCompliantMessage("OUs", NonCompOUs) -# Create a html formatted list detailing the settings for each OU -# - NonCompOUs: a set of dicts, each with a "Name" and "Value" fields -EnumOUSettings(NonCompOUs) := concat("", [ - "The following OUs are non-compliant:", - "
    ", - concat("", [concat("", [ - "
  • ", - OU.Name, - ": ", - OU.Value, - "
  • " - ]) | some OU in NonCompOUs]), - "
" -]) - -# Create a html formatted list detailing the settings for each group -# - NonCompGroups: a set of dicts, each with a "Name" and "Value" fields -EnumGroupSettings(NonCompGroups) := concat("", [ - "The following groups are non-compliant:", - "
    ", - concat("", [concat("", [ - "
  • ", - Group.Name, - ": ", - Group.Value, - "
  • " - ]) | some Group in NonCompGroups]), - "
" -]) +EnumGroupSettings(NonCompGroups) := NonCompliantMessage("groups", NonCompGroups) + +# Create a html formatted list detailing the settings for each OU/group +# - Listing: a set of dicts, each with a "Name" and "Value" fields +NonCompliantMessage(GroupsOrOU, Listing) := message if { + items := [concat("", ["
  • ", item.Name, ": ", item.Value, "
  • "]) + | some item in Listing] + message := sprintf("The following %s are non-compliant:
      %s
    ", + [GroupsOrOU, concat("", items)]) +} ReportDetails(NonCompOUs, NonCompGroups) := Description if { count(NonCompOUs) > 0 @@ -102,10 +101,12 @@ ReportDetails(NonCompOUs, NonCompGroups) := Description if { Description := EnumGroupSettings(NonCompGroups) } +RequirementsMetMessage := "Requirement met in all OUs and groups." + ReportDetails(NonCompOUs, NonCompGroups) := Description if { count(NonCompOUs) == 0 count(NonCompGroups) == 0 - Description := "Requirement met in all OUs and groups." + Description := RequirementsMetMessage } OUsWithEvents contains OrgUnit if { @@ -416,4 +417,150 @@ GetEvents(LogName) := Events if { # Returns all conditions that match passed value (true/false) # Commonly used for OR/Any conditions -FilterArray(Conditions, Boolean) := [Condition | some Condition in Conditions; Condition == Boolean] \ No newline at end of file +FilterArray(Conditions, Boolean) := [Condition | some Condition in Conditions; Condition == Boolean] + +# Use GetApiSettingValue() when you need to determine for a "sub" orgunit +# (not the top-level orgunit) the current setting value. It may be set +# explicitly in the orgunit, but it may be inherited from the top-level +# orgunit. This function handles both cases. The ApiSettingExists() is +# a helper function that indicates whether a setting is present in the given +# orgunit. All settings MUST be present in the top-level orgunit. + +ApiSettingExists(Section, Setting, OU) := true if { + OUSettings := input.policies[OU] + Section in object.keys(OUSettings) + Setting in object.keys(OUSettings[Section]) +} else := false + +GetApiSettingValue(Section, Setting, OU) := Value if { + not ApiSettingExists(Section, Setting, OU) + topOUSettings := input.policies[TopLevelOU] + Value := topOUSettings[Section][Setting] +} + +GetApiSettingValue(Section, Setting, OU) := Value if { + OUSettings := input.policies[OU] + Value := OUSettings[Section][Setting] +} + +# The following functions are intended for use in testing the Scubagoggles +# Rego modules. + +PassTestResult(PolicyId, Output) := TestResult(PolicyId, + Output, + RequirementsMetMessage, + true) + +PassTestResultWithMessage(PolicyId, Output, Message) := TestResult(PolicyId, + Output, + Message, + true) + +FailTestResult(PolicyId, Output, FailMessage) := TestResult(PolicyId, + Output, + FailMessage, + false) + +FailTestNoEvent(PolicyId, Output, TopOU, defaultOK) := true if { + RuleOutput := FindTestOutput(PolicyId, Output) + RuleOutput.RequirementMet == defaultOK + RuleOutput.NoSuchEvent + RuleOutput.ReportDetails == NoSuchEventDetails(defaultOK, TopOU) +} else := false + +FailTestGroupNonCompliant(PolicyId, Output, Listing) if { + RuleOutput := FindTestOutput(PolicyId, Output) + not RuleOutput.RequirementMet + not RuleOutput.NoSuchEvent + RuleOutput.ReportDetails == EnumGroupSettings(Listing) +} else := false + +FailTestOUNonCompliant(PolicyId, Output, Listing) if { + RuleOutput := FindTestOutput(PolicyId, Output) + not RuleOutput.RequirementMet + not RuleOutput.NoSuchEvent + RuleOutput.ReportDetails == EnumOUSettings(Listing) +} else := false + +FailTestNonCompliant(PolicyId, Output, Message) if { + RuleOutput := FindTestOutput(PolicyId, Output) + not RuleOutput.RequirementMet + not RuleOutput.NoSuchEvent + RuleOutput.ReportDetails == Message +} else := false + +FailTestBothNonCompliant(PolicyId, Output, OUListing, GroupListing) if { + RuleOutput := FindTestOutput(PolicyId, Output) + not RuleOutput.RequirementMet + not RuleOutput.NoSuchEvent + RuleOutput.ReportDetails == sprintf("%s
    %s", + [EnumOUSettings(OUListing), + EnumGroupSettings(GroupListing)]) +} else := false + +TestResult(PolicyId, Output, ReportDetailString, RequirementMet) := true if { + RuleOutput := FindTestOutput(PolicyId, Output) + RuleOutput.RequirementMet == RequirementMet + EventsOK(RuleOutput) + RuleOutput.ReportDetails == ReportDetailString +} else := false + +FindTestOutput(PolicyId, Output) := RuleOutput if { + RulesOutput := [Result | some Result in Output; Result.PolicyId == PolicyId] + count(RulesOutput) == 1 + RuleOutput := RulesOutput[0] +} + +EventsOK(RuleOutput) if { + PolicyApiInUse +} else if { + not RuleOutput.NoSuchEvent +} else := false + +default PolicyApiInUse := false + +PolicyApiInUse if {"policies" in object.keys(input)} + +# The function you should use to determine the enabled state is AppEnabled(). +# AppDisabled() only checks whether the orgunit has an explicit disabled +# state - if it doesn't have an explicit state setting, it'll inherit +# the setting from the top orgunit. Use AppEnabled() and NOT AppDisabled()! +# Use it like this, for example (with Chat): +# +# ChatEnabled(orgunit) := utils.AppEnabled(input.policies, "chat", orgunit) +# +# (you have to make sure the service status name is "chat_service_status" in +# the policies input data). + +AppDisabled(policies, serviceStatusName, orgunit) if { + appState := policies[orgunit][serviceStatusName].serviceState + upper(appState) == "DISABLED" +} + +default AppEnabled(_, _, _) := false + +AppServiceStatusName(appName) := sprintf("%s_service_status", [appName]) + +AppEnabled(policies, appName, orgunit) if { + serviceStatusName := AppServiceStatusName(appName) + appState := policies[orgunit][serviceStatusName].serviceState + upper(appState) == "ENABLED" +} + +AppEnabled(policies, appName, orgunit) if { + serviceStatusName := AppServiceStatusName(appName) + not AppDisabled(policies, serviceStatusName, orgunit) + appState := policies[TopLevelOU][serviceStatusName].serviceState + upper(appState) == "ENABLED" +} + +# There are a lot of policies that have enabled/disabled states. The states +# (values) in the log events are strings ("true", "false), while the states +# in the Policy API are booleans (true, false). This is a common function +# to translate the states to "enabled"/"disabled". + +GetFriendlyEnabledValue(Value) := "enabled" if { + Value in {true, "true"} +} else := "disabled" if { + Value in {false, "false"} +} else := Value diff --git a/scubagoggles/reporter/FrontPageReport/FrontPageReportTemplate.html b/scubagoggles/reporter/FrontPageReport/FrontPageReportTemplate.html index 303a66ef..6667705c 100644 --- a/scubagoggles/reporter/FrontPageReport/FrontPageReportTemplate.html +++ b/scubagoggles/reporter/FrontPageReport/FrontPageReportTemplate.html @@ -17,12 +17,11 @@

    SCuBA GWS Secure Configuration Baseline Reports

    {{TENANT_DETAILS}} -

    +

    {{TABLE}} -

    - \ No newline at end of file + diff --git a/scubagoggles/reporter/IndividualReport/IndividualReportTemplate.html b/scubagoggles/reporter/IndividualReport/IndividualReportTemplate.html index 0401b1f2..281245de 100644 --- a/scubagoggles/reporter/IndividualReport/IndividualReportTemplate.html +++ b/scubagoggles/reporter/IndividualReport/IndividualReportTemplate.html @@ -4,7 +4,6 @@ {{TITLE}} {{MAIN_CSS}} {{MAIN_JS}} -
    @@ -17,9 +16,9 @@

    {{TITLE}}

    -

    {{WARNING_NOTIFICATION}}

    + {{WARNING_NOTIFICATION}} {{METADATA}} {{TABLES}}
    - \ No newline at end of file + diff --git a/scubagoggles/reporter/md_parser.py b/scubagoggles/reporter/md_parser.py index 2cc803dc..cf03deb3 100644 --- a/scubagoggles/reporter/md_parser.py +++ b/scubagoggles/reporter/md_parser.py @@ -1,90 +1,358 @@ -""" -This modules contains functions petaining to the baseline markdown documents. - +"""Markdown document parsing. """ import re -import pathlib -from html import escape -def read_baseline_docs(baseline_path:pathlib.Path, prod_to_fullname:dict): +from collections import defaultdict +from pathlib import Path +from typing import Iterable, Union + +from scubagoggles.version import Version + + +class MarkdownParserError(RuntimeError): + + """An exception related to Markdown processing errors. This can be used + to catch the exception for omitting the traceback, which really isn't + much use in this case. """ - This function parses the secure baseline via each product markdown - document to align policy with the software baseline. + +class MarkdownParser: + + """The MarkdownParser is responsible for parsing the baseline Markdown + files to extract the policy baseline information. """ - baseline_md = [ - filename.stem for filename in baseline_path.glob('*.md') - ] - - # map baseline short name i.e gmail to markdown file name - # assumes the product fullname is in the markdown file name - prod_to_baselinemd = {} - for product in prod_to_fullname.keys(): - for baseline in baseline_md: - if product in baseline: - prod_to_baselinemd[product] = baseline - - # create a dict containing Policy Group and Individual policies - baseline_output = {} - for product, baselinemd in prod_to_baselinemd.items(): - baseline_output[product] = [] - baselinemd_path = baseline_path / f"{baselinemd}.md" - with baselinemd_path.open(mode='r',encoding='UTF-8') as baseline_f: - md_lines = baseline_f.readlines() - - # Select the policy group number via "## Number." regex - # example line this would match on: ## 1. PolicyGroup - line_numbers = [ - i - for i, line in enumerate(md_lines) - if re.search(r"^## [0-9]+\.", line) - ] - groups = [md_lines[line_number] for line_number in line_numbers] - - for group_name in groups: - group = {} - group_number = group_name.split(".")[0][3:] - group_name = group_name.split(".")[1].strip() - group["GroupNumber"] = group_number - group["GroupName"] = group_name - group["Controls"] = [] - - # Search for the line number of all individual Policy Group Ids - # There is an assumption here that Policy id is the uppercase version - # of the product short name i.e meet => MEET - product_upper = 'DRIVEDOCS' if product == 'drive' else product.upper() - - id_regex = rf"#### [A-Za-z]+\.{product_upper}\.{group_number}\.\d+v\d+\.*\d*\s*$" - line_numbers = [ - i - for i, line in enumerate(md_lines) - if re.search(id_regex, line) - ] - - # Read all lines of the individual policy - for line_number in line_numbers: - line_advance = 1 - value = md_lines[line_number + line_advance].strip() - - # We're done getting the policy text as soon as we encounter - # a blank line. - while md_lines[line_number + line_advance + 1].strip(): - line_advance += 1 - value += " " + md_lines[line_number + line_advance].strip() - - value = escape(value) - line = md_lines[line_number].strip()[5:] - - # Check if policy has been deleted - deleted = False - if line.endswith("X"): - deleted = True - line = line[:-1] - value = "[DELETED] " + value - - group["Controls"].append({"Id": line, "Value": value, "Deleted": deleted}) - - baseline_output[product].append(group) - return baseline_output + # Regular expressions used in parsing the Markdown text. Note that these + # are intended to be used with match() and NOT search() (for search, the + # expressions need the start of string (^)). + + _above4_re = re.compile(r'#{1,3}[^#]') + + _group_re = re.compile(r'##\s*(?P\d+)\.?\s+(?P.+)$') + + _level2_re = re.compile(r'##[^#]') + + _policies_re = re.compile(r'(?i)###\s*Policies$') + + _baseline_re = re.compile(r'####\s*(?PGWS\.(?P[^.]+)' + r'\.(?P\d+)\.(?P\d+)' + r'(?Pv\d+\.\d+))$') + + _baseline_id_map = {'drive': 'drivedocs'} + + def __init__(self, baseline_dir: Union[Path, str]): + + """Initializer for the MarkdownParser class. + + :param baseline_dir: directory containing the baseline Markdown + files. + :type baseline_dir: Path or str + """ + + self._baseline_dir = Path(baseline_dir) + if not self._baseline_dir.is_dir(): + raise NotADirectoryError(f'{self._baseline_dir}') + + # This handles the single exception case where the combined drive + # and docs product has a product name of "drive", but the baseline + # identifiers are "drivedocs" (e.g., GWS.DRIVEDOCS.1.8). Arggh. + + self._baseline_id_map = {'drive': 'drivedocs'} + + @classmethod + def baseline_identifier(cls, product: str) -> str: + + """Return the identifier string used in the baselines for the + given product. + + :param str product: product name. + :return: the baseline identifier, in only lowercase characters. + """ + + return cls._baseline_id_map.get(product, product).lower() + + def parse_baselines(self, products: Iterable[str]) -> dict: + + """Given a list of baseline product names (e.g., "gmail", "meet"), + this method parses the corresponding Markdown files and returns + the baseline data. + + :param Iterable[str] products: list of baseline product names. + :return: dictionary of baseline data, where the keys are the given + product names and the values are the product data. See the + _parse() method for the format of the returned data. + """ + + result = {} + + for product in products: + product_result = self._parse(product) + result.update(product_result) + + return result + + def _parse(self, file_name: str, product: str = None) -> dict: + + """Parse the given Markdown file and return a dictionary containing + baseline policy information. + + The dictionary returned has the following format: + + { : [, ...] } + + where is the product name (e.g., "gmail"), and + is a dictionary: + + { 'GroupName': , + 'GroupNumber': , + 'Controls': [, ...] } + + where is a description of the group, is the group + identifier, and is a dictionary for each baseline: + + { 'Id': , 'Value': } + + where is the baseline identifier (e.g., 'GWS.GMAIL.1.1'), + and is the description of the baseline requirement. + + :param str file_name: name of the Markdown file. It's also used as + the product name, unless one is explicitly given. + :param str product: name of the GWS product. This is used instead of + the file name (in the normal case, the file name is the same as + the product name). + :return: baseline data parsed from the Markdown file + :rtype: dict + """ + + result = defaultdict(list) + + eof_message = 'unexpected end of file encountered' + product = product if product else file_name + baseline_id = self.baseline_identifier(product) + md_file = self._baseline_dir / f'{file_name}.md' + + content = [line.strip() for line + in md_file.read_text(encoding = 'utf-8').splitlines()] + + total_lines = len(content) + skip_lines = 0 + + # This is the main loop of the parser. It locates the start of a + # policy group. Once found, the inner loops read the section + # related to the current policy group, first looking for the + # "Policies" section, and then the individual policies. These + # inner loops keep track of the additional lines processed using + # the 'skip_lines' count. When a policy group has been completely + # parsed, the outer loop regains control and will advance to the + # next unprocessed line based on this count. + + for line_number, line in enumerate(content, start = 1): + + if skip_lines: + skip_lines -= 1 + continue + + if not line: + continue + + # Find the next policy group. + + match = self._group_re.match(line) + + if not match: + continue + + group_id = match['id'] + group_name = match['name'] + + group = {'GroupNumber': group_id, + 'GroupName': group_name, + 'Controls': []} + + if line_number == total_lines: + self._parser_error(md_file, eof_message, group_id, group_name) + + # We're in the start of the policy group, so next look for the + # "Policies" section, which contains the baseline definitions. + + for next_line in content[line_number:]: + + skip_lines += 1 + + match = self._policies_re.match(next_line) + if match or self._level2_re.match(next_line): + break + + if not match: + message = '"Policies" section missing' + self._parser_error(md_file, message, group_id, group_name) + + if (line_number + skip_lines) == total_lines: + self._parser_error(md_file, eof_message, group_id, group_name) + + baseline_content = content[line_number + skip_lines:] + skip_lines += self._parse_baselines(baseline_content, + md_file, + baseline_id, + group) + + # All baseline items in the current group have been parsed. + # The group is added to the result dictionary. + + result[product].append(group) + + return result + + def _parse_baselines(self, + baseline_content: list, + md_file: Path, + baseline_id: str, + group: dict) -> int: + + """This method parses the "Policies" sections of the baseline + Markdown files. + + The "controls" section of the given group is filled in, with each + element in the list containing information about one baseline. + + :param list baseline_content: lines from the Markdown content following + the "Policies" section. + :param Path md_file: file specification of the Markdown file for + error reporting. + :param str baseline_id: baseline identifier for the current file + (e.g., "gmail"). + :param dict group: group data that will contain the controls parsed in + this method. NOTE that the group is passed by reference, so all + additions made to it are essentially passed back to the caller. + :return: + """ + + group_id = group['GroupNumber'] + group_name = group['GroupName'] + + # We're in the section where the baselines are defined. The + # following two loops parse the baseline sections. The outer + # loop handles the transition from one baseline section to the + # next, while the inner loop locates the next baseline and + # parses it. + + next_line = '' + prev_item = 0 + lines_seen = 0 + total_lines = len(baseline_content) + + while (lines_seen < total_lines + and not self._above4_re.match(next_line)): + + for next_line in baseline_content[lines_seen:]: + + if self._above4_re.match(next_line): + break + + lines_seen += 1 + + # Find the next baseline section. + + match = self._baseline_re.match(next_line) + if not match: + continue + + # We've found a baseline section. Check the baseline + # identifier to make sure it's expected (this is mainly + # to catch cut/paste errors and unintentional omissions). + + current_baseline_id = match['product'].lower() + + if current_baseline_id != baseline_id: + message = ('different product encountered ' + f'{current_baseline_id} != {baseline_id}') + self._parser_error(md_file, + message, + group_id, + group_name) + + baseline = match['baseline'] + ident = match['id'] + item = int(match['item']) + version = match['version'] + + if ident != group_id: + message = f'mismatching group number ({ident})' + self._parser_error(md_file, + message, + group_id, + group_name) + + if version != Version.suffix: + message = f'invalid baseline version ({version})' + self._parser_error(md_file, + message, + group_id, + group_name) + + if item != (prev_item + 1): + message = (f'expected baseline item {prev_item + 1}, ' + f'got item {item}') + self._parser_error(md_file, + message, + group_id, + group_name) + + prev_item = item + value_lines = [] + + for value_line in baseline_content[lines_seen:]: + + lines_seen += 1 + + if not value_line: + if not value_lines: + continue + break + + value_lines.append(value_line) + + value = ' '.join(value_lines) + + if not value: + message = ('missing description for baseline item ' + f'{item}') + self._parser_error(md_file, + message, + group_id, + group_name) + + control = {'Id': baseline, 'Value': value} + group['Controls'].append(control) + + # Break out of this inner loop, and as long as we're not + # at the end of the file, the outer loop will re-enter + # the inner loop to locate the next baseline section. + + break + + return lines_seen + + @staticmethod + def _parser_error(md_file: Path, + message: str, + group_id: str = None, + group_name: str = None): + + """Constructs an error message and raises a MarkdownParserError + exception. + + :param Path md_file: Markdown file specification. + :param str message: error-specific message. + :param str group_id: [optional] identifier of the group - if this is + given, the group_name is also required. + :param str group_name: [optional] name of the policy group. + """ + + message = f'{md_file}: {message}' + if group_id: + message += f' for group id {group_id} ({group_name})' + + raise MarkdownParserError(message) diff --git a/scubagoggles/reporter/reporter.py b/scubagoggles/reporter/reporter.py index d7bd8872..2bc44e17 100644 --- a/scubagoggles/reporter/reporter.py +++ b/scubagoggles/reporter/reporter.py @@ -1,19 +1,24 @@ """ reporter.py creates the report html page - -Currently, utilizes pandas to generate the HTML table fragments """ -import os +import io +import logging import time import warnings + from datetime import datetime -import pandas as pd -from scubagoggles.utils import rel_abs_path +from html import escape +from pathlib import Path + from scubagoggles.scuba_constants import API_LINKS +from scubagoggles.version import Version + +log = logging.getLogger(__name__) # Nine instance attributes is reasonable in this case. -# pylint: disable-next=too-many-instance-attributes +# pylint: disable=too-many-instance-attributes + class Reporter: """The Reporter class generates the HTML files containing the conformance @@ -22,6 +27,9 @@ class Reporter: _github_url = 'https://github.com/cisagov/scubagoggles' + _reporter_path = Path(__file__).parent + + # pylint: disable-next=too-many-positional-arguments def __init__(self, product: str, tenant_domain: str, @@ -64,20 +72,24 @@ def __init__(self, self.progress_bar = progress_bar @staticmethod - def _get_test_result(requirement_met: bool, criticality: str, no_such_events: bool) -> str: - ''' - Checks the Rego to see if the baseline passed or failed and indicates the criticality - of the baseline. + def _get_test_result(requirement_met: bool, + criticality: str, + no_such_events: bool) -> str: + """ + Checks the Rego to see if the baseline passed or failed and indicates + the criticality of the baseline. - :param requirement_met: a boolean value indicating if the requirement passed or failed. - :param criticality: a string value indicating the criticality of the failed baseline, + :param requirement_met: a boolean value indicating if the requirement + passed or failed. + :param criticality: a string value indicating the criticality of the + failed baseline, values: should, may, 3rd Party, Not-Implemented :param no_such_events: boolean whether there are no such events - ''' + """ - # If there were no log events for the test, the state of "requirement_met" - # doesn't matter - it's a test requiring a manual check (i.e., "no events - # found"). + # If there were no log events for the test, the state of + # "requirement_met" doesn't matter - it's a test requiring a manual + # check (i.e., "no events found"). criticality = criticality.lower() @@ -96,63 +108,94 @@ def _get_test_result(requirement_met: bool, criticality: str, no_such_events: bo @staticmethod def create_html_table(table_data: list) -> str: - ''' - Creates an HTML Table for the results of the Rego Scan - - :param table_data: list object of results of Rego Scan - ''' - table_html = pd.DataFrame(table_data).to_html(border = 0, index = False, - escape=False, render_links=True) - table_html = table_html.replace(' style="text-align: right;"', '') - table_html = table_html.replace(' class="dataframe"', '') + + """Creates an HTML Table for the results of the Rego Scan + + :param list table_data: list of dictionaries containing the results of + Rego scan. Each item in the list must have the same dictionary + structure (i.e., same keys). + """ + + table_html = '' + + if not table_data: + return table_html + + headings = table_data[0].keys() + + with io.StringIO() as outstream: + + outstream.write('\n') + outstream.write(' \n') + outstream.write(' \n') + for heading in headings: + outstream.write(f' \n') + outstream.write(' \n') + outstream.write(' \n') + + outstream.write(' \n') + for record in table_data: + outstream.write(' \n') + for heading in headings: + outstream.write(f' \n') + outstream.write(' \n') + outstream.write(' \n') + + # There's no ending newline on purpose (as that's the way it was + # done with the previous implementation using Pandas). + + outstream.write('
    {heading}
    {record[heading]}
    ') + + table_html = outstream.getvalue() + return table_html - @staticmethod - def build_front_page_html(fragments: list, tenant_info: dict) -> str: - ''' + @classmethod + def build_front_page_html(cls, fragments: list, tenant_info: dict) -> str: + """ Builds the Front Page Report using the HTML Report Template :param fragments: list object containing each baseline :param tenant_info: list object containing each baseline - ''' - reporter_path = str(rel_abs_path(__file__,"./")) - with open(os.path.join(reporter_path, './FrontPageReport/FrontPageReportTemplate.html'), - mode='r', encoding='UTF-8') as file: - html = file.read() + """ - table = "".join(fragments) + template_file = (cls._reporter_path + / 'FrontPageReport/FrontPageReportTemplate.html') + html = template_file.read_text(encoding = 'utf-8') - with open(os.path.join(reporter_path,'./styles/main.css'), - encoding='UTF-8') as file: - css = file.read() - html = html.replace('{{MAIN_CSS}}', f"") + table = ''.join(fragments) - front_page_path = os.path.join(reporter_path, './styles/FrontPageStyle.css') - with open(front_page_path, mode='r', encoding='UTF-8') as file: - css = file.read() - html = html.replace('{{FRONT_CSS}}', f"") + main_css_file = cls._reporter_path / 'styles/main.css' + css = main_css_file.read_text(encoding = 'utf-8') + html = html.replace('{{MAIN_CSS}}', f'') + + front_css_file = cls._reporter_path / 'styles/FrontPageStyle.css' + css = front_css_file.read_text(encoding = 'utf-8') + html = html.replace('{{FRONT_CSS}}', f'') html = html.replace('{{TABLE}}', table) now = datetime.now() - report_date = now.strftime("%m/%d/%Y %H:%M:%S") + " " + time.tzname[time.daylight] - - meta_data = f"\ - \ - \ - \ - \ -
    Customer DomainReport Date
    {tenant_info['domain']}{report_date}
    " + report_date = (now.strftime('%m/%d/%Y %H:%M:%S') + + ' ' + time.tzname[time.daylight]) + + meta_data = ('' + '' + f'
    Customer DomainReport Date
    {tenant_info["domain"]}{report_date}' + '
    ') + html = html.replace('{{TENANT_DETAILS}}', meta_data) + html = html.replace('{{VERSION}}', Version.current) + return html def _is_control_omitted(self, control_id : str) -> bool: - ''' + """ Determine if the supplied control was marked for omission in the config file and if the expiration date has passed, if applicable. :param control_id: the control ID, e.g., GWS.GMAIL.1.1v1. Case- insensitive. - ''' + """ # Lowercase for case-insensitive comparison control_id = control_id.lower() if control_id in self._omissions: @@ -168,7 +211,7 @@ def _is_control_omitted(self, control_id : str) -> bool: # provided. Evaluate the date to see if the control should # still be omitted. raw_date = self._omissions[control_id]['expiration'] - if raw_date is None or raw_date == "": + if raw_date is None or raw_date == '': # If the expiration date is left blank or an empty string, # omit the policy return True @@ -176,10 +219,10 @@ def _is_control_omitted(self, control_id : str) -> bool: expiration_date = datetime.strptime(raw_date, '%Y-%m-%d') except ValueError: # Malformed date, don't omit the policy - warning = f"Config file indicates omitting {control_id}, " \ - f"but the provided expiration date, {raw_date}, is " \ - "malformed. The expected format is yyyy-mm-dd. Control" \ - " will not be omitted." + warning = (f'Config file indicates omitting {control_id}, ' + f'but the provided expiration date, {raw_date}, is ' + 'malformed. The expected format is yyyy-mm-dd. Control' + ' will not be omitted.') self._warn(warning, RuntimeWarning) return False now = datetime.now() @@ -187,73 +230,71 @@ def _is_control_omitted(self, control_id : str) -> bool: # The expiration date is in the future, omit the policy return True # The expiration date is passed, don't omit the policy - warning = f"Config file indicates omitting {control_id}, but " \ - f"the provided expiration date, {raw_date}, has passed. " \ - "Control will not be omitted." + warning = (f'Config file indicates omitting {control_id}, but ' + f'the provided expiration date, {raw_date}, has passed. ' + 'Control will not be omitted.') self._warn(warning, RuntimeWarning) return False def _get_omission_rationale(self, control_id : str) -> str: - ''' + """ Return the rationale indicated in the config file for the indicated control, if provided. If not, return a string warning the user that no rationale was provided. :param control_id: the control ID, e.g., GWS.GMAIL.1.1v1. Case- insensitive. - ''' + """ # Lowercase for case-insensitive comparison control_id = control_id.lower() if control_id not in self._omissions: - raise RuntimeError(f"{control_id} not omitted in config file, " \ - "cannot fetch rationale") + raise RuntimeError(f'{control_id} not omitted in config file, ' + 'cannot fetch rationale') # If any of the following conditions is true, no rationale was # provided - no_rationale = \ - (self._omissions[control_id] is None) or \ - ('rationale' not in self._omissions[control_id]) or \ - (self._omissions[control_id]['rationale'] is None) or \ - (self._omissions[control_id]['rationale'] == "") + no_rationale = ((self._omissions[control_id] is None) or + ('rationale' not in self._omissions[control_id]) or + (self._omissions[control_id]['rationale'] is None) or + (self._omissions[control_id]['rationale'] == '')) if no_rationale: - warning = f"Config file indicates omitting {control_id}, but " \ - "no rationale provided." + warning = (f'Config file indicates omitting {control_id}, but ' + 'no rationale provided.') self._warn(warning, RuntimeWarning) - return "Rationale not provided." + return 'Rationale not provided.' return self._omissions[control_id]['rationale'] def _build_report_html(self, fragments: list) -> str: - ''' + """ Adds data into HTML Template and formats the page accordingly :param fragments: list object containing each baseline - ''' - reporter_path = str(rel_abs_path(__file__,"./")) - with open(os.path.join(reporter_path, './IndividualReport/IndividualReportTemplate.html'), - mode='r', encoding='UTF-8') as file: - html = file.read() - - with open(os.path.join(reporter_path, './styles/main.css'), - encoding='UTF-8') as file: - css = file.read() - html = html.replace('{{MAIN_CSS}}', f"") - - with open(os.path.join(reporter_path, 'scripts/main.js'), - encoding='UTF-8') as file: - javascript = file.read() - html = html.replace('{{MAIN_JS}}', f"") - - title = self._full_name + " Baseline Report" + """ + + template_file = (self._reporter_path + / 'IndividualReport/IndividualReportTemplate.html') + html = template_file.read_text(encoding = 'utf-8') + + main_css_file = self._reporter_path / 'styles/main.css' + css = main_css_file.read_text(encoding = 'utf-8') + html = html.replace('{{MAIN_CSS}}', f'') + + main_js_file = self._reporter_path / 'scripts/main.js' + javascript = main_js_file.read_text(encoding = 'utf-8') + html = html.replace('{{MAIN_JS}}', f'') + + title = self._full_name + ' Baseline Report' html = html.replace('{{TITLE}}', title) - # this block of code is for adding - # warning notifications to any of the baseline reports - classroom_notification = "

    Note: Google Classroom is not available by default in GWS"\ - " but as an additional Google Service.

    " - no_warning = "


    " + # This block of code is for adding warning notifications to any of + # the baseline reports. + classroom_notification = ('

    Note: Google Classroom is not available ' + 'by default in GWS but as an additional ' + 'Google Service.

    ') if self._full_name == 'Google Classroom': - html = html.replace('{{WARNING_NOTIFICATION}}', classroom_notification) + html = html.replace('{{WARNING_NOTIFICATION}}', + classroom_notification) else: - html = html.replace('{{WARNING_NOTIFICATION}}', no_warning) + html = html.replace('{{WARNING_NOTIFICATION}}', '') # Relative path back to the front page home_page = f'../{self._main_report_name}.html' @@ -261,38 +302,40 @@ def _build_report_html(self, fragments: list) -> str: now = datetime.now() - report_date = now.strftime("%m/%d/%Y %H:%M:%S") + " " + time.tzname[time.daylight] - baseline_version = "0.3" - tool_version = "0.3.0" - meta_data = f"\ - \ - \ - \ - \ -
    Customer Domain Report DateBaseline VersionTool Version
    {self._tenant_domain}{report_date}{baseline_version}{tool_version}
    " + report_date = (now.strftime('%m/%d/%Y %H:%M:%S') + + ' ' + time.tzname[time.daylight]) + meta_data = (f'' + '' + '' + f'' + f'' + '
    Customer DomainReport DateBaseline VersionTool Version
    {self._tenant_domain}{report_date}{Version.suffix}{Version.current}
    ') html = html.replace('{{METADATA}}', meta_data) - collected = "".join(fragments) + collected = ''.join(fragments) html = html.replace('{{TABLES}}', collected) return html def _get_failed_prereqs(self, test: dict) -> set: - ''' - Given the output of a specific Rego test and the set of successful and unsuccessful - calls, determine the set of prerequisites that were not met. + """ + Given the output of a specific Rego test and the set of successful + and unsuccessful calls, determine the set of prerequisites that were + not met. + :param test: a dictionary representing the output of a Rego test - ''' + """ + if 'Prerequisites' not in test: - # If Prerequisites is not defined, assume the test just depends on the - # reports API. - prereqs = {"reports/v1/activities/list"} + # If Prerequisites is not defined, assume the test just depends + # on the reports API. + prereqs = {'reports/v1/activities/list'} else: prereqs = set(test['Prerequisites']) - # A call is failed if it is either missing from the successful_calls set - # or present in the unsuccessful_calls + # A call is failed if it is either missing from the successful_calls + # set or present in the unsuccessful_calls failed_prereqs = set().union( prereqs.difference(self._successful_calls), prereqs.intersection(self._unsuccessful_calls) @@ -302,51 +345,56 @@ def _get_failed_prereqs(self, test: dict) -> set: @staticmethod def _get_failed_details(failed_prereqs: set) -> str: - ''' + """ Create the string used for the Details column of the report when one or more of the API calls/functions failed. - :param failed_prereqs: A set of strings with the API calls/function prerequisites - that were not met for a given test. - ''' + :param failed_prereqs: A set of strings with the API calls/function + prerequisites that were not met for a given test. + """ - failed_apis = [API_LINKS[api] for api in failed_prereqs if api in API_LINKS] - failed_functions = [call for call in failed_prereqs if call not in API_LINKS] - failed_details = "" + failed_apis = [API_LINKS[api] for api in failed_prereqs + if api in API_LINKS] + failed_functions = [call for call in failed_prereqs + if call not in API_LINKS] + failed_details = '' if len(failed_apis) > 0: links = ', '.join(failed_apis) - failed_details += f"This test depends on the following API call(s) " \ - f"which did not execute successfully: {links}. " + failed_details += ('This test depends on the following API call(s) ' + f'which did not execute successfully: {links}.') if len(failed_functions) > 0: - failed_details += f"This test depends on the following function(s) " \ - f"which did not execute successfully: {', '.join(failed_functions)}. " - failed_details += "See terminal output for more details." + failed_details += ('This test depends on the following ' + 'function(s) which did not execute ' + f"successfully: {', '.join(failed_functions)}.") + failed_details += 'See terminal output for more details.' return failed_details @staticmethod def _get_summary_category(result: str) -> str: - '''Map the string result returned from get_test_result to the appropriate summary category. + """ + Map the string result returned from get_test_result to the + appropriate summary category. :param result: The result, e.g., "Warning" - ''' - - if result in {"No events found", "N/A"}: - return "Manual" - if result == "Warning": - return "Warnings" - if result == "Fail": - return "Failures" - if result == "Pass": - return "Passes" - raise ValueError(f"Unexpected result, {result}", RuntimeWarning) + """ + + if result in {'No events found', 'N/A'}: + return 'Manual' + if result == 'Warning': + return 'Warnings' + if result == 'Fail': + return 'Failures' + if result == 'Pass': + return 'Passes' + raise ValueError(f'Unexpected result, {result}', RuntimeWarning) def _handle_rules_omission(self, control_id : str, tests : list): - '''Process the test results for the rules report if the rules control + """Process the test results for the rules report if the rules control was omitted. :control_id: The control ID for the rules control. :tests: A list of test result dictionaries. - ''' + """ table_data = [] for test in tests: if 'Not-Implemented' in test['Criticality']: @@ -366,75 +414,81 @@ def _handle_rules_omission(self, control_id : str, tests : list): return table_data def _warn(self, *args, **kwargs): - ''' + """ Wrapper for the warnings.warn function, that clears and refreshes the progress bar if one has been provided, to keep the output clean. Accepts all the arguments the warnings.warn function accepts. - ''' + """ if self.progress_bar is not None: self.progress_bar.clear() warnings.warn(*args, **kwargs) if self.progress_bar is not None: self.progress_bar.refresh() - def rego_json_to_ind_reports(self, test_results: list, out_path: str) -> list: - ''' + def rego_json_to_ind_reports(self, + test_results: list, + out_path: str) -> list: + """ Transforms the Rego JSON output into individual HTML and JSON reports :param test_results: list of dictionaries with results of Rego test, deserialized from JSON data. :param out_path: output path where HTML should be saved - ''' + """ - product_capitalized = self._product.capitalize() - product_upper = ('DRIVEDOCS' if self._product == 'drive' - else self._product.upper()) - ind_report_name = product_capitalized + "Report" + product = self._product + product_capitalized = product.capitalize() + product_upper = 'DRIVEDOCS' if product == 'drive' else product.upper() + ind_report_name = product_capitalized + 'Report' fragments = [] json_data = [] - tool_version = '0.3.0' github_url = self._github_url report_stats = { - "Manual": 0, - "Passes": 0, - "Errors": 0, - "Failures": 0, - "Warnings": 0, - "Omit": 0 + 'Manual': 0, + 'Passes': 0, + 'Errors': 0, + 'Failures': 0, + 'Warnings': 0, + 'Omit': 0 } for baseline_group in self._product_policies: table_data = [] results_data = {} for control in baseline_group['Controls']: - tests = [test for test in test_results if test['PolicyId'] == control['Id']] + control_id = control['Id'] + requirement = escape(control['Value']) + tests = [test for test in test_results + if test['PolicyId'] == control_id] if len(tests) == 0: - # Handle the case where Rego doesn't output anything for a given control + # Handle the case where Rego doesn't output anything for + # a given control report_stats['Errors'] += 1 - issues_link = f'GitHub' + issues_link = (f'GitHub') table_data.append({ - 'Control ID': control['Id'], - 'Requirement': control['Value'], - 'Result': "Error - Test results missing", - 'Criticality': "-", + 'Control ID': control_id, + 'Requirement': requirement, + 'Result': 'Error - Test results missing', + 'Criticality': '-', 'Details': f'Report issue on {issues_link}'}) - self._warn(f"No test results found for Control Id {control['Id']}", - RuntimeWarning) + log.error('No test results found for Control Id %s', + control_id) continue - if self._is_control_omitted(control['Id']): + if self._is_control_omitted(control_id): # Handle the case where the control was omitted - if product_capitalized == "Rules": + if product_capitalized == 'Rules': # Rules is a special case - rules_data = self._handle_rules_omission(control['Id'], tests) + rules_data = self._handle_rules_omission(control_id, tests) table_data.extend(rules_data) report_stats['Omit'] += len(rules_data) continue report_stats['Omit'] += 1 - rationale = self._get_omission_rationale(control['Id']) + rationale = self._get_omission_rationale(control_id) table_data.append({ - 'Control ID': control['Id'], - 'Requirement': control['Value'], - 'Result': "Omitted", + 'Control ID': control_id, + 'Requirement': requirement, + 'Result': 'Omitted', 'Criticality': tests[0]['Criticality'], 'Details': f'Test omitted by user. {rationale}' }) @@ -442,14 +496,13 @@ def rego_json_to_ind_reports(self, test_results: list, out_path: str) -> list: for test in tests: failed_prereqs = self._get_failed_prereqs(test) if len(failed_prereqs) > 0: - report_stats["Errors"] += 1 + report_stats['Errors'] += 1 failed_details = self._get_failed_details(failed_prereqs) - table_data.append({ - 'Control ID': control['Id'], - 'Requirement': control['Value'], - 'Result': "Error", - 'Criticality': test['Criticality'], - 'Details': failed_details}) + table_data.append({'Control ID': control_id, + 'Requirement': requirement, + 'Result': 'Error', + 'Criticality': test['Criticality'], + 'Details': failed_details}) continue result = self._get_test_result(test['RequirementMet'], test['Criticality'], @@ -457,63 +510,64 @@ def rego_json_to_ind_reports(self, test_results: list, out_path: str) -> list: details = test['ReportDetails'] - if result == "No events found": - warning_icon = "\ - " - details = warning_icon + " " + test['ReportDetails'] - # As rules doesn't have its own baseline, Rules and Common Controls - # need to be handled specially - if product_capitalized == "Rules": + if result == 'No events found': + warning_icon = ('' + '') + details = warning_icon + ' ' + test['ReportDetails'] + # As rules doesn't have its own baseline, Rules + # and Common Controls need to be handled specially + if product_capitalized == 'Rules': if 'Not-Implemented' in test['Criticality']: - # The easiest way to identify the GWS.COMMONCONTROLS.13.1v1 - # results that belong to the Common Controls report is they're - # marked as Not-Implemented. This if excludes them from the + # The easiest way to identify the + # GWS.COMMONCONTROLS.13.1 results that belong to the + # Common Controls report is they're marked as + # Not-Implemented. This if excludes them from the # rules report. continue report_stats[self._get_summary_category(result)] += 1 table_data.append({ - 'Control ID': control['Id'], + 'Control ID': control_id, 'Rule Name': test['Requirement'], 'Result': result, 'Criticality': test['Criticality'], 'Rule Description': test['ReportDetails']}) - elif product_capitalized == "Commoncontrols" \ - and baseline_group['GroupName'] == 'System-defined Rules' \ - and 'Not-Implemented' not in test['Criticality']: + elif (product_capitalized == 'Commoncontrols' + and baseline_group['GroupName'] == 'System-defined Rules' + and 'Not-Implemented' not in test['Criticality']): # The easiest way to identify the System-defined Rules - # results that belong to the Common Controls report is they're - # marked as Not-Implemented. This if excludes the full results - # from the Common Controls report. + # results that belong to the Common Controls report is + # they're marked as Not-Implemented. This if excludes + # the full results from the Common Controls report. continue else: report_stats[self._get_summary_category(result)] += 1 table_data.append({ - 'Control ID': control['Id'], - 'Requirement': control['Value'], + 'Control ID': control_id, + 'Requirement': requirement, 'Result': result, 'Criticality': test['Criticality'], 'Details': details}) - markdown_group_name = "-".join(baseline_group['GroupName'].split()) - md_basename = "commoncontrols" if self._product == "rules" else self._product - group_reference_url = f'{github_url}/blob/v{tool_version}/baselines/'\ - f'{md_basename}.md#'\ - f'{baseline_group["GroupNumber"]}-{markdown_group_name}' - group_reference_url_spacing = "%20".join(group_reference_url.split()) - markdown_link = fr''\ - f'{baseline_group["GroupName"]}' - fragments.append(f"

    {product_upper}-{baseline_group['GroupNumber']} \ - {markdown_link}

    ") + markdown_group_name = '-'.join(baseline_group['GroupName'].split()) + group_reference_url = (f'{self._github_url}/blob/{Version.current}/' + f'scubagoggles/baselines/{product}.md' + f'#{baseline_group["GroupNumber"]}-' + + markdown_group_name) + markdown_link = (f'' + f'{baseline_group["GroupName"]}') + fragments.append(f'

    {product_upper}-' + f'{baseline_group["GroupNumber"]} ' + f'{markdown_link}

    ') fragments.append(self.create_html_table(table_data)) - results_data.update({"GroupName": baseline_group['GroupName']}) - results_data.update({"GroupNumber": baseline_group['GroupNumber']}) - results_data.update({"GroupReferenceURL":group_reference_url_spacing}) - results_data.update({"Controls": table_data}) + results_data.update({'GroupName': baseline_group['GroupName']}) + results_data.update({'GroupNumber': baseline_group['GroupNumber']}) + results_data.update({'GroupReferenceURL': group_reference_url}) + results_data.update({'Controls': table_data}) json_data.append(results_data) html = self._build_report_html(fragments) - with open(f"{out_path}/IndividualReports/{ind_report_name}.html", - mode='w', encoding='UTF-8') as html_file: + with open(f'{out_path}/IndividualReports/{ind_report_name}.html', + mode='w', encoding='UTF-8') as html_file: html_file.write(html) return [report_stats, json_data] diff --git a/scubagoggles/reporter/styles/main.css b/scubagoggles/reporter/styles/main.css index 45ab7ef3..c5b62999 100644 --- a/scubagoggles/reporter/styles/main.css +++ b/scubagoggles/reporter/styles/main.css @@ -18,6 +18,7 @@ --toggle-height: 25px; --toggle-width: 46px; --toggle-radius: 18px; + --unvisited-link-color: #0000EE; } body { @@ -148,4 +149,4 @@ a.control_group:active { font-family: Arial, Helvetica, sans-serif; color: var(--link-color); text-decoration: none; -} \ No newline at end of file +} diff --git a/scubagoggles/robust_dns.py b/scubagoggles/robust_dns.py index b5ddd5c7..3ec3db29 100644 --- a/scubagoggles/robust_dns.py +++ b/scubagoggles/robust_dns.py @@ -1,216 +1,216 @@ -'''Code for running robust DNS queries, including logic for retries over both the traditional DNS -as well as DNS over HTTPS (DoH)''' - -import json -import dns.resolver -import requests - -class RobustDNSClient: - '''Class used to run robust DNS queries.''' - def __init__(self): - # doh_server is a variable used to indicate the preferred DoH server. - # Initialize to empty string to indicate that we don't yet know the - # preferred server. Will be set when the Select-DohServer function is - # called. - self.doh_server = "" - - def query(self, qname : str, max_tries : int = 2) -> dict: - ''' - Requests the TXT record for the given qname. First tries to make - the query over traditional DNS but retries over DoH in the event of - failure. - - :param qname: The query name (ie domain name). - :param max_tries: The number of times to retry each kind of query. - If all queries are unsuccessful, the traditional queries and - the DoH queries will each be made $MaxTries times. Default 2. - ''' - # First attempt the query over traditional DNS - result = self.traditional_query(qname, max_tries) - success = result['success'] - trad_empty = result['trad_empty'] - answers = result['answers'] - log_entries = result['log_entries'] - - if not success: - # The traditional DNS query(ies) failed. Retry with DoH - result = self.doh_query(qname, max_tries) - success = result['success'] - answers.extend(result['answers']) - log_entries.extend(result['log_entries']) - - # There are three possible outcomes of this function: - # - Full confidence: we know conclusively that the domain exists or not, either via a - # non-empty answer from traditional DNS or an answer from DoH. - # - Medium confidence: domain likely doesn't exist, but there is some doubt (empty answer - # from traditonal DNS and DoH failed). - # No confidence: all queries failed. Throw an exception in this case. - if success: - return {"Answers": answers, "HighConfidence": True, "LogEntries": log_entries} - if trad_empty: - return {"Answers": answers, "HighConfidence": False, "LogEntries": log_entries} - log = '\n'.join([json.dumps(entry) for entry in log_entries]) - raise Exception(f"Failed to resolve {qname}. \n{log}") - - def traditional_query(self, qname : str, max_tries : int) -> dict: - ''' - Requests the TXT record for the given qname over DoH. - - :param qname: The query name (ie domain name). - :param max_tries: The number of times to retry the query. - ''' - try_number = 0 - answers = [] - log_entries = [] - success = False - trad_empty = False - - while try_number < max_tries: - try_number += 1 - try: - # No exception was thrown, we got our answer, so break out of the retry loop and - # set success to True, no need to retry the traditional query or retry with DoH. - response = dns.resolver.resolve(qname, "TXT") - for answer in response: - answers.append(answer.to_text().strip('"')) # Strip - # the quotes because the actual response comes wrapped in - # quotes, resulting in duplicate quotes in the json output - success = True - log_entries.append({ - "query_name": qname, - "query_method": "traditional", - "query_result": f"Query returned {len(response)} txt records"}) - break - except dns.resolver.NoAnswer: - # The answer section was empty. This usually means that while the domain exists, - # but there are no records of the requested type. No need to retry the traditional - # query, this was not a transient failure. Don't set success to True though, as we - # want to retry this query from a public resolver, in case the internal DNS server - # returns a different answer than what is served to the public (i.e., split horizon - # DNS). - trad_empty = True - log_entries.append({ - "query_name": qname, - "query_method": "traditional", - "query_result": "Query returned 0 txt records"}) - break - except dns.resolver.NXDOMAIN: - # The server returned NXDomain, no need to retry the traditional query or retry - # with DoH, this was not a transient failure. Break out of loop and set success to - # True - success = True - log_entries.append({ - "query_name": qname, - "query_method": "traditional", - "query_result": "Query returned NXDOMAIN"}) - break - except Exception as exception: - # The query failed, possibly a transient failure. Retry if we haven't reached - # max_tries. - log_entries.append({ - "query_name": qname, - "query_method": "traditional", - "query_result": f"Query resulted in exception {exception}"}) - - return { - "success": success, - "trad_empty": trad_empty, - "answers": answers, - "log_entries": log_entries - } - - def get_doh_server(self) -> str: - """Iterates through several DoH servers. Returns the first successful server. - If none are successful, returns None. - """ - doh_servers = ["cloudflare-dns.com", "[2606:4700:4700::1111]", "1.1.1.1"] - preferred_server = None - for server in doh_servers: - try: - # Attempt to resolve a.root-servers.net over DoH. The domain chosen is somewhat - # arbitrary, as we don't care what the answer is, only if the query succeeds/fails. - # a.root-servers.net, the address of one of the DNS root servers, was chosen as a - # benign, highly-available domain. - uri = f"https://{server}/dns-query?name=a.root-servers.net" - headers = {"accept":"application/dns-json"} - requests.get(uri, headers=headers, timeout=2).json() - # No error was thrown, return this server - preferred_server = server - break - except Exception: # pylint: disable=broad-except - # This server didn't work, try the next one - continue - return preferred_server - - def doh_query(self, qname : str, max_tries : int) -> dict: - ''' - Requests the TXT record for the given qname over DoH. - - :param qname: The query name (ie domain name). - :param max_tries: The number of times to retry the query. - ''' - log_entries = [] - try_number = 0 - answers = [] - success = False - - if self.doh_server == "": - self.doh_server = self.get_doh_server() - if self.doh_server is None: - # None of the DoH servers are accessible - log_entries.append({ - "query_name": qname, - "query_method": "DoH", - "query_result": "NA, DoH servers unreachable" - }) - else: - # DoH is available, query for the domain - while try_number < max_tries: - try_number += 1 - uri = f"https://{self.doh_server}/dns-query?name={qname}&type=txt" - headers = {"accept":"application/dns-json"} - try: - response = requests.get(uri, headers=headers, timeout=5).json() - if response['Status'] == 0: - # 0 indicates there was no error - if 'Answer' in response: - nanswers = len(response['Answer']) - log_entries.append({ - "query_name": qname, - "query_method": "DoH", - "query_result": f"Query returned {nanswers} txt records"}) - for answer in response['Answer']: - answers.append(answer['data'].replace('"', '')) - else: - # Edge case where the domain exists but there are no txt records - log_entries.append({ - "query_name": qname, - "query_method": "DoH", - "query_result": "Query returned 0 txt records"}) - success = True - break - if response['Status'] == 3: - # 3 indicates NXDomain. The DNS query succeeded, but the domain did not - # exist. Set success to True, because event though the domain does not - # exist, the query succeeded, and this came from an external resolver so - # split horizon is not an issue here. - log_entries.append({ - "query_name": qname, - "query_method": "DoH", - "query_result": "Query returned NXDomain"}) - success = True - break - # The remainder of the response codes indicate that the query did not succeed. - # Retry if we haven't reached max_tries. - log_entries.append({ - "query_name": qname, - "query_method": "DoH", - "query_result": f"Query returned response code {response['Status']}"}) - except Exception as exception: - # The DoH query failed, likely due to a network issue. Retry if we haven't - # reached max_trues. - log_entries.append({ - "query_name": qname, - "query_method": "DoH", - "query_result": f"Query resulted in exception {exception}"}) - return {"success": success, "answers": answers, "log_entries": log_entries} +'''Code for running robust DNS queries, including logic for retries over both the traditional DNS +as well as DNS over HTTPS (DoH)''' + +import json +import dns.resolver +import requests + +class RobustDNSClient: + '''Class used to run robust DNS queries.''' + def __init__(self): + # doh_server is a variable used to indicate the preferred DoH server. + # Initialize to empty string to indicate that we don't yet know the + # preferred server. Will be set when the Select-DohServer function is + # called. + self.doh_server = "" + + def query(self, qname : str, max_tries : int = 2) -> dict: + ''' + Requests the TXT record for the given qname. First tries to make + the query over traditional DNS but retries over DoH in the event of + failure. + + :param qname: The query name (ie domain name). + :param max_tries: The number of times to retry each kind of query. + If all queries are unsuccessful, the traditional queries and + the DoH queries will each be made $MaxTries times. Default 2. + ''' + # First attempt the query over traditional DNS + result = self.traditional_query(qname, max_tries) + success = result['success'] + trad_empty = result['trad_empty'] + answers = result['answers'] + log_entries = result['log_entries'] + + if not success: + # The traditional DNS query(ies) failed. Retry with DoH + result = self.doh_query(qname, max_tries) + success = result['success'] + answers.extend(result['answers']) + log_entries.extend(result['log_entries']) + + # There are three possible outcomes of this function: + # - Full confidence: we know conclusively that the domain exists or not, either via a + # non-empty answer from traditional DNS or an answer from DoH. + # - Medium confidence: domain likely doesn't exist, but there is some doubt (empty answer + # from traditonal DNS and DoH failed). + # No confidence: all queries failed. Throw an exception in this case. + if success: + return {"Answers": answers, "HighConfidence": True, "LogEntries": log_entries} + if trad_empty: + return {"Answers": answers, "HighConfidence": False, "LogEntries": log_entries} + log = '\n'.join([json.dumps(entry) for entry in log_entries]) + raise Exception(f"Failed to resolve {qname}. \n{log}") + + def traditional_query(self, qname : str, max_tries : int) -> dict: + ''' + Requests the TXT record for the given qname over DoH. + + :param qname: The query name (ie domain name). + :param max_tries: The number of times to retry the query. + ''' + try_number = 0 + answers = [] + log_entries = [] + success = False + trad_empty = False + + while try_number < max_tries: + try_number += 1 + try: + # No exception was thrown, we got our answer, so break out of the retry loop and + # set success to True, no need to retry the traditional query or retry with DoH. + response = dns.resolver.resolve(qname, "TXT") + for answer in response: + answers.append(answer.to_text().strip('"')) # Strip + # the quotes because the actual response comes wrapped in + # quotes, resulting in duplicate quotes in the json output + success = True + log_entries.append({ + "query_name": qname, + "query_method": "traditional", + "query_result": f"Query returned {len(response)} txt records"}) + break + except dns.resolver.NoAnswer: + # The answer section was empty. This usually means that while the domain exists, + # but there are no records of the requested type. No need to retry the traditional + # query, this was not a transient failure. Don't set success to True though, as we + # want to retry this query from a public resolver, in case the internal DNS server + # returns a different answer than what is served to the public (i.e., split horizon + # DNS). + trad_empty = True + log_entries.append({ + "query_name": qname, + "query_method": "traditional", + "query_result": "Query returned 0 txt records"}) + break + except dns.resolver.NXDOMAIN: + # The server returned NXDomain, no need to retry the traditional query or retry + # with DoH, this was not a transient failure. Break out of loop and set success to + # True + success = True + log_entries.append({ + "query_name": qname, + "query_method": "traditional", + "query_result": "Query returned NXDOMAIN"}) + break + except Exception as exception: + # The query failed, possibly a transient failure. Retry if we haven't reached + # max_tries. + log_entries.append({ + "query_name": qname, + "query_method": "traditional", + "query_result": f"Query resulted in exception {exception}"}) + + return { + "success": success, + "trad_empty": trad_empty, + "answers": answers, + "log_entries": log_entries + } + + def get_doh_server(self) -> str: + """Iterates through several DoH servers. Returns the first successful server. + If none are successful, returns None. + """ + doh_servers = ["cloudflare-dns.com", "[2606:4700:4700::1111]", "1.1.1.1"] + preferred_server = None + for server in doh_servers: + try: + # Attempt to resolve a.root-servers.net over DoH. The domain chosen is somewhat + # arbitrary, as we don't care what the answer is, only if the query succeeds/fails. + # a.root-servers.net, the address of one of the DNS root servers, was chosen as a + # benign, highly-available domain. + uri = f"https://{server}/dns-query?name=a.root-servers.net" + headers = {"accept":"application/dns-json"} + requests.get(uri, headers=headers, timeout=2).json() + # No error was thrown, return this server + preferred_server = server + break + except Exception: # pylint: disable=broad-except + # This server didn't work, try the next one + continue + return preferred_server + + def doh_query(self, qname : str, max_tries : int) -> dict: + ''' + Requests the TXT record for the given qname over DoH. + + :param qname: The query name (ie domain name). + :param max_tries: The number of times to retry the query. + ''' + log_entries = [] + try_number = 0 + answers = [] + success = False + + if self.doh_server == "": + self.doh_server = self.get_doh_server() + if self.doh_server is None: + # None of the DoH servers are accessible + log_entries.append({ + "query_name": qname, + "query_method": "DoH", + "query_result": "NA, DoH servers unreachable" + }) + else: + # DoH is available, query for the domain + while try_number < max_tries: + try_number += 1 + uri = f"https://{self.doh_server}/dns-query?name={qname}&type=txt" + headers = {"accept":"application/dns-json"} + try: + response = requests.get(uri, headers=headers, timeout=5).json() + if response['Status'] == 0: + # 0 indicates there was no error + if 'Answer' in response: + nanswers = len(response['Answer']) + log_entries.append({ + "query_name": qname, + "query_method": "DoH", + "query_result": f"Query returned {nanswers} txt records"}) + for answer in response['Answer']: + answers.append(answer['data'].replace('"', '')) + else: + # Edge case where the domain exists but there are no txt records + log_entries.append({ + "query_name": qname, + "query_method": "DoH", + "query_result": "Query returned 0 txt records"}) + success = True + break + if response['Status'] == 3: + # 3 indicates NXDomain. The DNS query succeeded, but the domain did not + # exist. Set success to True, because event though the domain does not + # exist, the query succeeded, and this came from an external resolver so + # split horizon is not an issue here. + log_entries.append({ + "query_name": qname, + "query_method": "DoH", + "query_result": "Query returned NXDomain"}) + success = True + break + # The remainder of the response codes indicate that the query did not succeed. + # Retry if we haven't reached max_tries. + log_entries.append({ + "query_name": qname, + "query_method": "DoH", + "query_result": f"Query returned response code {response['Status']}"}) + except Exception as exception: + # The DoH query failed, likely due to a network issue. Retry if we haven't + # reached max_trues. + log_entries.append({ + "query_name": qname, + "query_method": "DoH", + "query_result": f"Query resulted in exception {exception}"}) + return {"success": success, "answers": answers, "log_entries": log_entries} diff --git a/scubagoggles/run_rego.py b/scubagoggles/run_rego.py index 3308d561..60437966 100644 --- a/scubagoggles/run_rego.py +++ b/scubagoggles/run_rego.py @@ -3,16 +3,35 @@ This module will differentiate between windows and mac OPA executables when running. """ -from sys import platform, stderr -import subprocess import json import logging +import os +import platform +import re +import subprocess -def opa_eval( - product_name:str, input_file:str, opa_path:str, rego_path:str, - omit_sudo:bool, debug:bool): - """ - Runs the rego scripts and outputs a json to out_path +from pathlib import Path + +log = logging.getLogger(__name__) + +# This will contain the OPA executable file specification. It's global because +# it's only used by opa_eval() and once the executable is found, it's the only +# one used to run OPA. +# pylint: disable=global-statement +OPA_EXE = None + +# This is used to parse the output of the OPA version command to get the +# version number of OPA being used in the run. +opa_version_re = re.compile(r'(?i)Version:\s+\d+(?:\.\d+)*') + + +def opa_eval(product_name: str, + input_file: str, + opa_path: Path, + rego_path: Path, + debug: bool): + + """Runs the rego scripts and outputs a json to out_path :param product_name: which product to run :param input_file: which file to look at @@ -21,48 +40,134 @@ def opa_eval( :param debug: to print debug statements or not """ - opa_exe = "" - rego_file = product_name.capitalize() - command = [] - windows_os = False - - if platform == 'win32': - opa_exe = (opa_path / "./opa_windows_amd64.exe").resolve() - windows_os = True - elif platform == 'darwin': - opa_exe = (opa_path / "./opa_darwin_amd64").resolve() - elif platform in ('linux', 'linux2'): - opa_exe = (opa_path / "./opa_linux_amd64_static").resolve() - else: - opa_exe = (opa_path / "./opa").resolve() - - if windows_os or omit_sudo: - command.extend([f"{opa_exe}"]) - else: - command.extend(["sudo", f"{opa_exe}"]) - - rego_file = (rego_path / f"./{rego_file}.rego").resolve() - utils_rego = (rego_path / "./Utils.rego").resolve() - command.extend( - ["eval", - "-i", input_file, - "-d", rego_file, - "-d", utils_rego, - f"data.{product_name}.tests", - "-f", "values" - ]) + global OPA_EXE + + if OPA_EXE is None: + OPA_EXE = find_opa(opa_path) + + rego_file = rego_path / f'{product_name.capitalize()}.rego' + utils_rego = rego_path / 'Utils.rego' + + command = [str(OPA_EXE), + 'eval', + f'data.{product_name}.tests', + '-i', str(input_file), + '-d', str(rego_file), + '-d', str(utils_rego), + '--format=values'] + + if debug: + # This "explain" option seems to do nothing... + command.append('--explain=full') + try: + log.debug('Running OPA: %s', ' '.join(command)) + output = subprocess.run(command, capture_output=True, check=True) - if debug: - logging.basicConfig(stream=stderr, level=logging.DEBUG) - opa_err = "\n--- Rego debug output ---\n" + output.stderr.decode() - logging.debug(opa_err) str_output = output.stdout.decode() + if debug: + log.debug('Rego output:\n%s', output.stdout.decode('utf-8')) + stderr_text = output.stderr.decode('utf-8') + if stderr_text: + log.debug('Rego error:\n%s', stderr_text) ret_tests = json.loads(str_output) return ret_tests except subprocess.CalledProcessError as cpe: - logging.error("\n--- OPA failed to execute from process error ---\n %s", cpe.output) - return {"opa_error": "process_error"} + logging.error('\n--- OPA failed to execute from process error ---\n %s', + cpe.output) + return {'opa_error': 'process_error'} except Exception as exc: - logging.error("\n--- OPA failed to execute from unknown error ---\n %s",exc) - return {"opa_error": "general_error"} + logging.error('\n--- OPA failed to execute from unknown error ---\n %s', + exc) + return {'opa_error': 'general_error'} + + +def find_opa(opa_path: Path = None): + + """Finds the OPA executable using the given directory (if supplied) and + the directories in the user's PATH. + + Locating the OPA executable should work in any operating environment. The + file name of the executable will differ depending on the OS. For example, + on Windows, it's downloaded from the OPA site as opa_windows_amd64.exe, + but on Linux it may be opa_linux_amd64_static. The user may also rename + this to be simply opa. On Windows, it's assumed to have an extension + (aka file type) of .exe. + + If no valid OPA executable is found, an exception is raised because this + executable is required for ScubaGoggles to run correctly. + + :param Path opa_path: [optional] directory where the OPA executable is + located. + + :return: file specification of the OPA executable. + :rtype: Path + """ + + path_dirs = [Path(opa_path)] if opa_path else [] + path_dirs.extend(Path(d) for d in os.environ['PATH'].split(os.pathsep)) + + opa_filenames = [] + + os_type = platform.system().lower() + + architectures = [platform.machine().lower()] + if architectures[0] == 'x86_64': + architectures.append('amd64') + + # An ARM-based Mac can supposedly run the AMD64 version + # of OPA. + if os_type == 'darwin' and 'amd64' not in architectures: + architectures.append('amd64') + + for architecture in architectures: + opa_filename = f'opa_{os_type}_{architecture}' + opa_filenames.append(opa_filename) + opa_filenames.append(f'{opa_filename}_static') + + extension = '.exe' if os_type == 'windows' else '' + + # The user may have renamed the "long" OPA executable name to shorten it, + # or may have followed the instructions for downloading OPA, which includes + # renaming it. We'll look for the longer name first, but the search will + # look for the shortened name, too. + opa_filenames.append('opa') + + opa_exe = None + + log.debug('Searching for OPA executable:') + + for filename in opa_filenames: + filename += extension + + for path_dir in path_dirs: + current_exe = Path(path_dir) / filename + log.debug(' Trying %s', current_exe) + if current_exe.exists(): + if os.access(current_exe, os.X_OK): + opa_exe = current_exe + log.debug(' Valid executable') + break + log.debug(' NO execute access') + + if opa_exe: + break + + if opa_exe is None: + raise FileNotFoundError('OPA executable not found in PATH') + try: + process = subprocess.run((opa_exe, 'version'), + capture_output = True, + check = True) + except subprocess.CalledProcessError as cpe: + if cpe.stderr: + log.error('Error during OPA version check:\n%s', + cpe.stderr.decode('utf-8')) + raise RuntimeError('Error occurred during OPA version check - ' + f'return code: {cpe.returncode}') from cpe + + match = opa_version_re.search(process.stdout.decode('utf-8')) + if match: + log.info('OPA %s', match[0]) + + return opa_exe diff --git a/sample-config-files/basic_config.yaml b/scubagoggles/sample-config-files/basic_config.yaml similarity index 88% rename from sample-config-files/basic_config.yaml rename to scubagoggles/sample-config-files/basic_config.yaml index 14ba2c96..7cee1e4e 100644 --- a/sample-config-files/basic_config.yaml +++ b/scubagoggles/sample-config-files/basic_config.yaml @@ -1,14 +1,14 @@ -# YAML basic configuration file with examples of how to specify various types -# of parameters. - -# Example specifying a string parameter -outputpath: example_output - -# Example specifying a list parameter -# Note that list parameter values must be formatted as a list (i.e., with -# brackets) in the config file, even if only one value is specified. For -# example, "baselines: [gmail]" is correct but "baselines: gmail" is not. -baselines: [gmail, calendar, groups, chat, drive, meet, sites, commoncontrols] - -# Example specifying a boolean paramter -quiet: false \ No newline at end of file +# YAML basic configuration file with examples of how to specify various types +# of parameters. + +# Example specifying a string parameter +outputpath: example_output + +# Example specifying a list parameter +# Note that list parameter values must be formatted as a list (i.e., with +# brackets) in the config file, even if only one value is specified. For +# example, "baselines: [gmail]" is correct but "baselines: gmail" is not. +baselines: [gmail, calendar, groups, chat, drive, meet, sites, commoncontrols] + +# Example specifying a boolean parameter +quiet: false diff --git a/sample-config-files/omit_policies.yaml b/scubagoggles/sample-config-files/omit_policies.yaml similarity index 90% rename from sample-config-files/omit_policies.yaml rename to scubagoggles/sample-config-files/omit_policies.yaml index 8004fb70..677fe492 100644 --- a/sample-config-files/omit_policies.yaml +++ b/scubagoggles/sample-config-files/omit_policies.yaml @@ -2,17 +2,17 @@ # Any omitted policies should be carefully considered and documented as part of an # organization's cybersecurity risk management program process and practices. -baselines: [gmail, chat, drive] +baselines: [gmail, commoncontrols] omitpolicy: - GWS.GMAIL.3.1v0.3: + GWS.GMAIL.3.1: rationale: "Known false positive; our SPF policy currently cannot to be retrieved via ScubaGoggles due to a split horizon setup but is available publicly." expiration: "2023-12-31" - GWS.CHAT.5.1v0.3: + GWS.COMMONCONTROLS.18.1: rationale: &DLPRationale "The DLP capability required by the baselines is implemented by third party product, [x], which ScubaGoggles does not have the ability to check." - GWS.DRIVEDOCS.7.1v0.3: + GWS.COMMONCONTROLS.18.2: rationale: *DLPRationale # The "&" character used in the above example defines an anchor, which saves a value diff --git a/sample-report/BaselineReports.html b/scubagoggles/sample-report/BaselineReports.html similarity index 96% rename from sample-report/BaselineReports.html rename to scubagoggles/sample-report/BaselineReports.html index c37a57df..f49ce3bd 100644 --- a/sample-report/BaselineReports.html +++ b/scubagoggles/sample-report/BaselineReports.html @@ -1,282 +1,282 @@ - - - - SCuBA GWS Secure Configuration Baseline Reports - - - - -
    -
    - Return to the report summary - -
    -

    SCuBA GWS Secure Configuration Baseline Reports

    -
    Customer DomainReport Date
    example.org10/11/2024 14:01:09 Pacific Daylight Time
    -

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Baseline Conformance ReportsDetails
    Google Calendar
    4 passes
    1 failure
    1 manual check
    Google Chat
    7 passes
    1 omitted
    Google Classroom
    6 passes
    Common Controls
    12 passes
    6 failures
    14 manual checks
    Google Drive and Docs
    10 passes
    3 warnings
    3 failures
    1 omitted
    Gmail
    25 passes
    2 warnings
    5 failures
    13 manual checks
    Groups for Business
    6 passes
    1 warning
    Google Meet
    5 passes
    Rules
    3 passes
    1 failure
    35 manual checks
    Google Sites
    1 pass
    -

    - -
    - + + + + SCuBA GWS Secure Configuration Baseline Reports + + + + +
    +
    + Return to the report summary + +
    +

    SCuBA GWS Secure Configuration Baseline Reports

    +
    Customer DomainReport Date
    example.org10/11/2024 14:01:09 Pacific Daylight Time
    +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Baseline Conformance ReportsDetails
    Google Calendar
    4 passes
    1 failure
    1 manual check
    Google Chat
    7 passes
    1 omitted
    Google Classroom
    6 passes
    Common Controls
    12 passes
    6 failures
    14 manual checks
    Google Drive and Docs
    10 passes
    3 warnings
    3 failures
    1 omitted
    Gmail
    25 passes
    2 warnings
    5 failures
    13 manual checks
    Groups for Business
    6 passes
    1 warning
    Google Meet
    5 passes
    Rules
    3 passes
    1 failure
    35 manual checks
    Google Sites
    1 pass
    +

    + +
    + \ No newline at end of file diff --git a/sample-report/IndividualReports/CalendarReport.html b/scubagoggles/sample-report/IndividualReports/CalendarReport.html similarity index 96% rename from sample-report/IndividualReports/CalendarReport.html rename to scubagoggles/sample-report/IndividualReports/CalendarReport.html index 714dc0f1..b776310e 100644 --- a/sample-report/IndividualReports/CalendarReport.html +++ b/scubagoggles/sample-report/IndividualReports/CalendarReport.html @@ -1,315 +1,315 @@ - - - - Google Calendar Baseline Report - - - - - -
    -
    - Return to the report summary - -
    -

    Google Calendar Baseline Report

    -


    -
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    -

    CALENDAR-1 External Sharing Options

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.CALENDAR.1.1v0.3External Sharing Options for Primary Calendars SHALL be configured to "Only free/busy information (hide event details)."PassShallRequirement met in all OUs and groups.
    GWS.CALENDAR.1.2v0.3External sharing options for secondary calendars SHALL be configured to "Only free/busy information (hide event details)."FailShallRequirement not met.
    Highest Level of Sharing: Share all information, and outsiders can change calendars.

    CALENDAR-2 External Invitations Warnings

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.CALENDAR.2.1v0.3External invitations warnings SHALL be enabled to prompt users before sending invitations.PassShallRequirement met in all OUs and groups.

    CALENDAR-3 Calendar Interop Management

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.CALENDAR.3.1v0.3Calendar Interop SHOULD be disabled.PassShouldRequirement met.
    GWS.CALENDAR.3.2v0.3OAuth 2.0 SHALL be used in lieu of basic authentication to establish connectivity between tenants or organizations in cases where Calendar Interop is deemed necessary for agency mission fulfillment.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    CALENDAR-4 Paid Appointments

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.CALENDAR.4.1v0.3Appointment Schedule with Payments SHALL be disabled.PassShallRequirement met in all OUs and groups.
    -
    - + + + + Google Calendar Baseline Report + + + + + +
    +
    + Return to the report summary + +
    +

    Google Calendar Baseline Report

    +


    +
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    +

    CALENDAR-1 External Sharing Options

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.CALENDAR.1.1v0.3External Sharing Options for Primary Calendars SHALL be configured to "Only free/busy information (hide event details)."PassShallRequirement met in all OUs and groups.
    GWS.CALENDAR.1.2v0.3External sharing options for secondary calendars SHALL be configured to "Only free/busy information (hide event details)."FailShallRequirement not met.
    Highest Level of Sharing: Share all information, and outsiders can change calendars.

    CALENDAR-2 External Invitations Warnings

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.CALENDAR.2.1v0.3External invitations warnings SHALL be enabled to prompt users before sending invitations.PassShallRequirement met in all OUs and groups.

    CALENDAR-3 Calendar Interop Management

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.CALENDAR.3.1v0.3Calendar Interop SHOULD be disabled.PassShouldRequirement met.
    GWS.CALENDAR.3.2v0.3OAuth 2.0 SHALL be used in lieu of basic authentication to establish connectivity between tenants or organizations in cases where Calendar Interop is deemed necessary for agency mission fulfillment.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    CALENDAR-4 Paid Appointments

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.CALENDAR.4.1v0.3Appointment Schedule with Payments SHALL be disabled.PassShallRequirement met in all OUs and groups.
    +
    + \ No newline at end of file diff --git a/sample-report/IndividualReports/ChatReport.html b/scubagoggles/sample-report/IndividualReports/ChatReport.html similarity index 96% rename from sample-report/IndividualReports/ChatReport.html rename to scubagoggles/sample-report/IndividualReports/ChatReport.html index 6d77b462..6c8b7fc7 100644 --- a/sample-report/IndividualReports/ChatReport.html +++ b/scubagoggles/sample-report/IndividualReports/ChatReport.html @@ -1,353 +1,353 @@ - - - - Google Chat Baseline Report - - - - - -
    -
    - Return to the report summary - -
    -

    Google Chat Baseline Report

    -


    -
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    -

    CHAT-1 Chat History

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.CHAT.1.1v0.3Chat history SHALL be enabled for information traceability.PassShallRequirement met in all OUs and groups.
    GWS.CHAT.1.2v0.3Users SHALL NOT be allowed to change their history setting.PassShallRequirement met in all OUs and groups.

    CHAT-2 External File Sharing

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.CHAT.2.1v0.3External file sharing SHALL be disabled to protect sensitive information from unauthorized or accidental sharing.PassShallRequirement met in all OUs and groups.

    CHAT-3 History for Spaces

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.CHAT.3.1v0.3Space history SHOULD be enabled for traceability of information.PassShouldRequirement met in all OUs and groups.

    CHAT-4 External Chat Messaging

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.CHAT.4.1v0.3External Chat messaging SHALL be restricted to allowlisted domains only.PassShallRequirement met in all OUs and groups.

    CHAT-5 DLP rules

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.CHAT.5.1v0.3Agencies SHOULD configure DLP rules to block or warn on sharing files with sensitive data.OmittedShould/Not-ImplementedTest omitted by user. The DLP capability required by the baselines is implemented by third party product, [x], which ScubaGoggles does not have the ability to check.

    CHAT-6 Content Reporting

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.CHAT.6.1v0.3Chat content reporting SHALL be enabled for all conversation types.PassShallRequirement met in all OUs and groups.
    WARNING: from the log events alone, it is not possible to distinguish between an OU inheriting settings from its parent and content reporting being disabled entirely. It's possible this tool classified some child OUs as compliant due to this limitation; manual check recommended for child OUs due to this edge case.
    GWS.CHAT.6.2v0.3All reporting message categories SHOULD be selected.PassShouldRequirement met in all OUs and groups.
    -
    - + + + + Google Chat Baseline Report + + + + + +
    +
    + Return to the report summary + +
    +

    Google Chat Baseline Report

    +


    +
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    +

    CHAT-1 Chat History

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.CHAT.1.1v0.3Chat history SHALL be enabled for information traceability.PassShallRequirement met in all OUs and groups.
    GWS.CHAT.1.2v0.3Users SHALL NOT be allowed to change their history setting.PassShallRequirement met in all OUs and groups.

    CHAT-2 External File Sharing

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.CHAT.2.1v0.3External file sharing SHALL be disabled to protect sensitive information from unauthorized or accidental sharing.PassShallRequirement met in all OUs and groups.

    CHAT-3 History for Spaces

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.CHAT.3.1v0.3Space history SHOULD be enabled for traceability of information.PassShouldRequirement met in all OUs and groups.

    CHAT-4 External Chat Messaging

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.CHAT.4.1v0.3External Chat messaging SHALL be restricted to allowlisted domains only.PassShallRequirement met in all OUs and groups.

    CHAT-5 DLP rules

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.CHAT.5.1v0.3Agencies SHOULD configure DLP rules to block or warn on sharing files with sensitive data.OmittedShould/Not-ImplementedTest omitted by user. The DLP capability required by the baselines is implemented by third party product, [x], which ScubaGoggles does not have the ability to check.

    CHAT-6 Content Reporting

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.CHAT.6.1v0.3Chat content reporting SHALL be enabled for all conversation types.PassShallRequirement met in all OUs and groups.
    WARNING: from the log events alone, it is not possible to distinguish between an OU inheriting settings from its parent and content reporting being disabled entirely. It's possible this tool classified some child OUs as compliant due to this limitation; manual check recommended for child OUs due to this edge case.
    GWS.CHAT.6.2v0.3All reporting message categories SHOULD be selected.PassShouldRequirement met in all OUs and groups.
    +
    + \ No newline at end of file diff --git a/sample-report/IndividualReports/ClassroomReport.html b/scubagoggles/sample-report/IndividualReports/ClassroomReport.html similarity index 96% rename from sample-report/IndividualReports/ClassroomReport.html rename to scubagoggles/sample-report/IndividualReports/ClassroomReport.html index d9e04235..7bc09555 100644 --- a/sample-report/IndividualReports/ClassroomReport.html +++ b/scubagoggles/sample-report/IndividualReports/ClassroomReport.html @@ -1,327 +1,327 @@ - - - - Google Classroom Baseline Report - - - - - -
    -
    - Return to the report summary - -
    -

    Google Classroom Baseline Report

    -

    Note: Google Classroom is not available by default in GWS but as an additional Google Service.

    -
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    -

    CLASSROOM-1 Class Membership

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.CLASSROOM.1.1v0.3Who can join classes in your domain SHALL be set to Users in your domain only.PassShallRequirement met in all OUs and groups.
    GWS.CLASSROOM.1.2v0.3Which classes users in your domain can join SHALL be set to Classes in your domain only.PassShallRequirement met in all OUs and groups.

    CLASSROOM-2 Classroom API

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.CLASSROOM.2.1v0.3Users SHALL NOT be able to authorize apps to access their Google Classroom data.PassShallRequirement met in all OUs and groups.

    CLASSROOM-3 Roster Import

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.CLASSROOM.3.1v0.3Roster import with Clever SHOULD be turned off.PassShouldRequirement met in all OUs and groups.

    CLASSROOM-4 Student Unenrollment

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.CLASSROOM.4.1v0.3Only teachers SHALL be allowed to unenroll students from classes.PassShallRequirement met in all OUs and groups.

    CLASSROOM-5 Class Creation

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.CLASSROOM.5.1v0.3Class creation SHALL be restricted to verified teachers only.PassShallRequirement met in all OUs and groups.
    -
    - + + + + Google Classroom Baseline Report + + + + + +
    +
    + Return to the report summary + +
    +

    Google Classroom Baseline Report

    +

    Note: Google Classroom is not available by default in GWS but as an additional Google Service.

    +
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    +

    CLASSROOM-1 Class Membership

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.CLASSROOM.1.1v0.3Who can join classes in your domain SHALL be set to Users in your domain only.PassShallRequirement met in all OUs and groups.
    GWS.CLASSROOM.1.2v0.3Which classes users in your domain can join SHALL be set to Classes in your domain only.PassShallRequirement met in all OUs and groups.

    CLASSROOM-2 Classroom API

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.CLASSROOM.2.1v0.3Users SHALL NOT be able to authorize apps to access their Google Classroom data.PassShallRequirement met in all OUs and groups.

    CLASSROOM-3 Roster Import

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.CLASSROOM.3.1v0.3Roster import with Clever SHOULD be turned off.PassShouldRequirement met in all OUs and groups.

    CLASSROOM-4 Student Unenrollment

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.CLASSROOM.4.1v0.3Only teachers SHALL be allowed to unenroll students from classes.PassShallRequirement met in all OUs and groups.

    CLASSROOM-5 Class Creation

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.CLASSROOM.5.1v0.3Class creation SHALL be restricted to verified teachers only.PassShallRequirement met in all OUs and groups.
    +
    + \ No newline at end of file diff --git a/sample-report/IndividualReports/CommoncontrolsReport.html b/scubagoggles/sample-report/IndividualReports/CommoncontrolsReport.html similarity index 97% rename from sample-report/IndividualReports/CommoncontrolsReport.html rename to scubagoggles/sample-report/IndividualReports/CommoncontrolsReport.html index 5e481536..6db7c63b 100644 --- a/sample-report/IndividualReports/CommoncontrolsReport.html +++ b/scubagoggles/sample-report/IndividualReports/CommoncontrolsReport.html @@ -1,653 +1,653 @@ - - - - Common Controls Baseline Report - - - - - -
    -
    - Return to the report summary - -
    -

    Common Controls Baseline Report

    -


    -
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    -

    COMMONCONTROLS-1 Phishing-Resistant Multi-Factor Authentication

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.1.1v0.3Phishing-Resistant MFA SHALL be required for all users.No events foundShall No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.
    GWS.COMMONCONTROLS.1.2v0.3Google 2SV new user enrollment period SHALL be set to 1 week.FailShallThe following OUs are non-compliant:
    • Org Name: New user enrollment period is set to 6 months
    GWS.COMMONCONTROLS.1.3v0.3Allow users to trust the device SHALL be disabled.FailShallThe following groups are non-compliant:
    • kimbarnes@example.org: Allow user to trust the device is ON
    GWS.COMMONCONTROLS.1.4v0.3If phishing-resistant MFA is not yet tenable, an MFA method from the following list SHALL be used in the interim.PassShallRequirement met in all OUs and groups.

    COMMONCONTROLS-2 Context-aware Access

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.2.1v0.3Policies restricting access to GWS based on signals about enterprise devices SHOULD be implemented.PassShouldRequirement met.

    COMMONCONTROLS-3 Login Challenges

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.3.1v0.3Login Challenges SHALL be enabled when third party SAML SSO is in use.PassShallRequirement met in all OUs and groups.

    COMMONCONTROLS-4 User Session Duration

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.4.1v0.3Users SHALL be forced to re-authenticate after an established 12-hour GWS login session has expired.PassShallRequirement met in all OUs and groups.

    COMMONCONTROLS-5 Secure Passwords

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.5.1v0.3User password strength SHALL be enforced.PassShallRequirement met in all OUs and groups.
    GWS.COMMONCONTROLS.5.2v0.3User password length SHALL be at least 12 characters.PassShallRequirement met in all OUs and groups.
    GWS.COMMONCONTROLS.5.3v0.3Password policy SHALL be enforced at next sign-in.FailShallThe following OUs are non-compliant:
    • Org Name: Enforce password policy at next sign-in is OFF
    GWS.COMMONCONTROLS.5.4v0.3User passwords SHALL NOT be reused.PassShallRequirement met in all OUs and groups.
    GWS.COMMONCONTROLS.5.5v0.3User passwords SHALL NOT expire.PassShallRequirement met in all OUs and groups.

    COMMONCONTROLS-6 Highly Privileged Accounts

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.6.1v0.3All highly privileged accounts SHALL leverage Google Account authentication with phishing-resistant MFA and not the agency's authoritative on-premises or federated identity system.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.COMMONCONTROLS.6.2v0.3A minimum of **two** and maximum of **eight** separate and distinct super admin users SHALL be configured.FailShallThe following super admins are configured: kimbarnes1@example.org, kimbarnes2@example.org, kimbarnes3@example.org, kimbarnes4@example.org, kimbarnes5@example.org, kimbarnes6@example.org, kimbarnes7@example.org, kimbarnes8@example.org, kimbarnes9@example.org, kimbarnes10@example.org, kimbarnes11@example.org. Note: Exceptions are allowed for "break glass" super admin accounts, though we are not able to account for this automatically.

    COMMONCONTROLS-7 Conflicting Account Management

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.7.1v0.3Account conflict management SHALL be configured to replace conflicting unmanaged accounts with managed ones.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    COMMONCONTROLS-8 Catastrophic Recovery Options for Super Admins

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.8.1v0.3Account self-recovery for Super Admins SHALL be disabledPassShallRequirement met in all OUs and groups.

    COMMONCONTROLS-9 GWS Advanced Protection Program

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.9.1v0.3Highly privileged accounts SHALL be enrolled in the GWS Advanced Protection Program.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.COMMONCONTROLS.9.2v0.3All sensitive user accounts SHOULD be enrolled into the GWS Advanced Protection Program.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    COMMONCONTROLS-10 App Access to Google APIs

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.10.1v0.3Agencies SHALL use GWS application access control policies to restrict access to all GWS services by third party apps.PassShallRequirement met.
    GWS.COMMONCONTROLS.10.2v0.3Agencies SHALL NOT allow users to consent to access to low-risk scopes.PassShallRequirement met.
    GWS.COMMONCONTROLS.10.3v0.3Agencies SHALL NOT trust unconfigured internal apps.No events foundShall No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.
    GWS.COMMONCONTROLS.10.4v0.3Agencies SHALL NOT allow users to access unconfigured third-party apps.No events foundShall No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.

    COMMONCONTROLS-11 Authorized Google Marketplace Apps

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.11.1v0.3Only approved Google Workspace Marketplace applications SHALL be allowed for installation.FailShallThe following OUs are non-compliant:
    • Org Name: Users can install and run any internal app, even if it's not allowlisted
    GWS.COMMONCONTROLS.11.2v0.3Access to Google Workspace applications by less secure apps that do not meet security standards for authentication SHALL be prevented.No events foundShould No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is compliant; manual check recommended.

    COMMONCONTROLS-12 Google Takeout Services for Users

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.12.1v0.3Google Takeout services SHALL be disabled.No events foundShall No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.

    COMMONCONTROLS-13 System-defined Rules

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.13.1v0.3Required system-defined alerting rules, as listed in the Policy group description, SHALL be enabled with alerts.N/AShall/Not-ImplementedResults for GWS.COMMONCONTROLS.13 are listed in the Rules Report.

    COMMONCONTROLS-14 Google Workspace Logs

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.14.1v0.3The following critical logs SHALL be sent to the agency's centralized SIEM.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.COMMONCONTROLS.14.2v0.3Audit logs SHALL be maintained for at least 6 months in active storage and an additional 18 months in cold storage, as dictated by OMB M-21-31.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    COMMONCONTROLS-15 Data Regions and Storage

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.15.1v0.3The data storage region SHALL be set to be the United States for all users in the agency's GWS environment.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.COMMONCONTROLS.15.2v0.3The supplemental data storage region SHALL NOT be set to 'Russian Federation'.No events foundShall No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is compliant; manual check recommended.

    COMMONCONTROLS-16 Additional Google Services

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.16.1v0.3Service status for Google services that do not have an individual control SHOULD be set to OFF for everyone.PassShouldRequirement met in all OUs and groups.

    COMMONCONTROLS-17 Multi-Party Approval

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.17.1v0.3Require multi party approval for sensitive admin actions SHALL be enabled.FailShallThe following OUs are non-compliant:
    • Org Name: Require multi party approval for sensitive admin actions is DISABLED
    -
    - + + + + Common Controls Baseline Report + + + + + +
    +
    + Return to the report summary + +
    +

    Common Controls Baseline Report

    +


    +
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    +

    COMMONCONTROLS-1 Phishing-Resistant Multi-Factor Authentication

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.1.1v0.3Phishing-Resistant MFA SHALL be required for all users.No events foundShall No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.
    GWS.COMMONCONTROLS.1.2v0.3Google 2SV new user enrollment period SHALL be set to 1 week.FailShallThe following OUs are non-compliant:
    • Org Name: New user enrollment period is set to 6 months
    GWS.COMMONCONTROLS.1.3v0.3Allow users to trust the device SHALL be disabled.FailShallThe following groups are non-compliant:
    • kimbarnes@example.org: Allow user to trust the device is ON
    GWS.COMMONCONTROLS.1.4v0.3If phishing-resistant MFA is not yet tenable, an MFA method from the following list SHALL be used in the interim.PassShallRequirement met in all OUs and groups.

    COMMONCONTROLS-2 Context-aware Access

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.2.1v0.3Policies restricting access to GWS based on signals about enterprise devices SHOULD be implemented.PassShouldRequirement met.

    COMMONCONTROLS-3 Login Challenges

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.3.1v0.3Login Challenges SHALL be enabled when third party SAML SSO is in use.PassShallRequirement met in all OUs and groups.

    COMMONCONTROLS-4 User Session Duration

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.4.1v0.3Users SHALL be forced to re-authenticate after an established 12-hour GWS login session has expired.PassShallRequirement met in all OUs and groups.

    COMMONCONTROLS-5 Secure Passwords

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.5.1v0.3User password strength SHALL be enforced.PassShallRequirement met in all OUs and groups.
    GWS.COMMONCONTROLS.5.2v0.3User password length SHALL be at least 12 characters.PassShallRequirement met in all OUs and groups.
    GWS.COMMONCONTROLS.5.3v0.3Password policy SHALL be enforced at next sign-in.FailShallThe following OUs are non-compliant:
    • Org Name: Enforce password policy at next sign-in is OFF
    GWS.COMMONCONTROLS.5.4v0.3User passwords SHALL NOT be reused.PassShallRequirement met in all OUs and groups.
    GWS.COMMONCONTROLS.5.5v0.3User passwords SHALL NOT expire.PassShallRequirement met in all OUs and groups.

    COMMONCONTROLS-6 Highly Privileged Accounts

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.6.1v0.3All highly privileged accounts SHALL leverage Google Account authentication with phishing-resistant MFA and not the agency's authoritative on-premises or federated identity system.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.COMMONCONTROLS.6.2v0.3A minimum of **two** and maximum of **eight** separate and distinct super admin users SHALL be configured.FailShallThe following super admins are configured: kimbarnes1@example.org, kimbarnes2@example.org, kimbarnes3@example.org, kimbarnes4@example.org, kimbarnes5@example.org, kimbarnes6@example.org, kimbarnes7@example.org, kimbarnes8@example.org, kimbarnes9@example.org, kimbarnes10@example.org, kimbarnes11@example.org. Note: Exceptions are allowed for "break glass" super admin accounts, though we are not able to account for this automatically.

    COMMONCONTROLS-7 Conflicting Account Management

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.7.1v0.3Account conflict management SHALL be configured to replace conflicting unmanaged accounts with managed ones.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    COMMONCONTROLS-8 Catastrophic Recovery Options for Super Admins

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.8.1v0.3Account self-recovery for Super Admins SHALL be disabledPassShallRequirement met in all OUs and groups.

    COMMONCONTROLS-9 GWS Advanced Protection Program

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.9.1v0.3Highly privileged accounts SHALL be enrolled in the GWS Advanced Protection Program.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.COMMONCONTROLS.9.2v0.3All sensitive user accounts SHOULD be enrolled into the GWS Advanced Protection Program.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    COMMONCONTROLS-10 App Access to Google APIs

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.10.1v0.3Agencies SHALL use GWS application access control policies to restrict access to all GWS services by third party apps.PassShallRequirement met.
    GWS.COMMONCONTROLS.10.2v0.3Agencies SHALL NOT allow users to consent to access to low-risk scopes.PassShallRequirement met.
    GWS.COMMONCONTROLS.10.3v0.3Agencies SHALL NOT trust unconfigured internal apps.No events foundShall No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.
    GWS.COMMONCONTROLS.10.4v0.3Agencies SHALL NOT allow users to access unconfigured third-party apps.No events foundShall No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.

    COMMONCONTROLS-11 Authorized Google Marketplace Apps

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.11.1v0.3Only approved Google Workspace Marketplace applications SHALL be allowed for installation.FailShallThe following OUs are non-compliant:
    • Org Name: Users can install and run any internal app, even if it's not allowlisted
    GWS.COMMONCONTROLS.11.2v0.3Access to Google Workspace applications by less secure apps that do not meet security standards for authentication SHALL be prevented.No events foundShould No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is compliant; manual check recommended.

    COMMONCONTROLS-12 Google Takeout Services for Users

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.12.1v0.3Google Takeout services SHALL be disabled.No events foundShall No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.

    COMMONCONTROLS-13 System-defined Rules

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.13.1v0.3Required system-defined alerting rules, as listed in the Policy group description, SHALL be enabled with alerts.N/AShall/Not-ImplementedResults for GWS.COMMONCONTROLS.13 are listed in the Rules Report.

    COMMONCONTROLS-14 Google Workspace Logs

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.14.1v0.3The following critical logs SHALL be sent to the agency's centralized SIEM.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.COMMONCONTROLS.14.2v0.3Audit logs SHALL be maintained for at least 6 months in active storage and an additional 18 months in cold storage, as dictated by OMB M-21-31.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    COMMONCONTROLS-15 Data Regions and Storage

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.15.1v0.3The data storage region SHALL be set to be the United States for all users in the agency's GWS environment.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.COMMONCONTROLS.15.2v0.3The supplemental data storage region SHALL NOT be set to 'Russian Federation'.No events foundShall No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is compliant; manual check recommended.

    COMMONCONTROLS-16 Additional Google Services

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.16.1v0.3Service status for Google services that do not have an individual control SHOULD be set to OFF for everyone.PassShouldRequirement met in all OUs and groups.

    COMMONCONTROLS-17 Multi-Party Approval

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.COMMONCONTROLS.17.1v0.3Require multi party approval for sensitive admin actions SHALL be enabled.FailShallThe following OUs are non-compliant:
    • Org Name: Require multi party approval for sensitive admin actions is DISABLED
    +
    + \ No newline at end of file diff --git a/sample-report/IndividualReports/DriveReport.html b/scubagoggles/sample-report/IndividualReports/DriveReport.html similarity index 97% rename from sample-report/IndividualReports/DriveReport.html rename to scubagoggles/sample-report/IndividualReports/DriveReport.html index cd62358d..83eba833 100644 --- a/sample-report/IndividualReports/DriveReport.html +++ b/scubagoggles/sample-report/IndividualReports/DriveReport.html @@ -1,428 +1,428 @@ - - - - Google Drive and Docs Baseline Report - - - - - -
    -
    - Return to the report summary - -
    -

    Google Drive and Docs Baseline Report

    -


    -
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    -

    DRIVEDOCS-1 Sharing Outside the Organization

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.DRIVEDOCS.1.1v0.3Agencies SHOULD disable sharing outside of the organization's domain.PassShouldRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.1.2v0.3Agencies SHOULD disable users' receiving files from outside of the organization's domain.PassShouldRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.1.3v0.3Warnings SHALL be enabled when a user is attempting to share something outside the domain.PassShallRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.1.4v0.3If sharing outside of the organization, then agencies SHALL disable sharing of files with individuals who are not using a Google account.PassShallRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.1.5v0.3Agencies SHALL disable making files and published web content visible to anyone with the link.PassShallRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.1.6v0.3Agencies SHALL set access checking to recipients only.PassShallRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.1.7v0.3Agencies SHALL NOT allow any users to distribute content from an organization-owned shared drive to shared drives owned by another organization.PassShallRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.1.8v0.3Agencies SHALL set newly created items to have Private to the Owner as the default level of access.PassShallRequirement met in all OUs and groups.

    DRIVEDOCS-2 Shared Drive Creation

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.DRIVEDOCS.2.1v0.3Agencies SHOULD NOT allow members with manager access to override shared drive creation settings.PassShouldRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.2.2v0.3Agencies SHOULD NOT allow users outside of their organization to access files in shared drives.WarningShouldThe following OUs are non-compliant:
    • Org Name: Users outside the organization can access files in shared drives
    GWS.DRIVEDOCS.2.3v0.3Agencies SHALL allow users who are not shared drive members to be added to files.FailShallThe following OUs are non-compliant:
    • Org Name: People who aren't shared drive members can be added to files
    GWS.DRIVEDOCS.2.4v0.3Agencies SHALL NOT allow viewers and commenters to download, print, and copy files.FailShallThe following OUs are non-compliant:
    • Org Name: Viewers and commenters are allowed to download, print, and copy files

    DRIVEDOCS-3 Security Updates for Files

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.DRIVEDOCS.3.1v0.3Agencies SHALL enable the security update for Drive files.PassShallRequirement met in all OUs and groups.

    DRIVEDOCS-4 Drive SDK

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.DRIVEDOCS.4.1v0.3Agencies SHOULD disable Drive SDK access.WarningShouldThe following OUs are non-compliant:
    • Lisa Cross: Drive SDK is enabled

    DRIVEDOCS-5 User Installation of Drive and Docs Add-Ons

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.DRIVEDOCS.5.1v0.3Agencies SHALL disable Add-Ons.FailShallThe following OUs are non-compliant:
    • Org Name: Users can install Google Docs add-ons from add-ons store.

    DRIVEDOCS-6 Drive for Desktop

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.DRIVEDOCS.6.1v0.3Google Drive for Desktop SHOULD be enabled only for authorized devices.WarningShouldThe following groups are non-compliant:
    • robertcampbell@example.net: Drive for Desktop is enabled and can be used on any device.
    • robertcampbell@example.net: Drive for Desktop is enabled and can be used on any device.
    • robertcampbell@example.net: Drive for Desktop is enabled and can be used on any device.

    DRIVEDOCS-7 DLP rules

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.DRIVEDOCS.7.1v0.3Agencies SHOULD configure DLP rules to block or warn on sharing files with sensitive data.OmittedShould/Not-ImplementedTest omitted by user. The DLP capability required by the baselines is implemented by third party product, [x], which ScubaGoggles does not have the ability to check.
    -
    - + + + + Google Drive and Docs Baseline Report + + + + + +
    +
    + Return to the report summary + +
    +

    Google Drive and Docs Baseline Report

    +


    +
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    +

    DRIVEDOCS-1 Sharing Outside the Organization

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.DRIVEDOCS.1.1v0.3Agencies SHOULD disable sharing outside of the organization's domain.PassShouldRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.1.2v0.3Agencies SHOULD disable users' receiving files from outside of the organization's domain.PassShouldRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.1.3v0.3Warnings SHALL be enabled when a user is attempting to share something outside the domain.PassShallRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.1.4v0.3If sharing outside of the organization, then agencies SHALL disable sharing of files with individuals who are not using a Google account.PassShallRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.1.5v0.3Agencies SHALL disable making files and published web content visible to anyone with the link.PassShallRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.1.6v0.3Agencies SHALL set access checking to recipients only.PassShallRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.1.7v0.3Agencies SHALL NOT allow any users to distribute content from an organization-owned shared drive to shared drives owned by another organization.PassShallRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.1.8v0.3Agencies SHALL set newly created items to have Private to the Owner as the default level of access.PassShallRequirement met in all OUs and groups.

    DRIVEDOCS-2 Shared Drive Creation

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.DRIVEDOCS.2.1v0.3Agencies SHOULD NOT allow members with manager access to override shared drive creation settings.PassShouldRequirement met in all OUs and groups.
    GWS.DRIVEDOCS.2.2v0.3Agencies SHOULD NOT allow users outside of their organization to access files in shared drives.WarningShouldThe following OUs are non-compliant:
    • Org Name: Users outside the organization can access files in shared drives
    GWS.DRIVEDOCS.2.3v0.3Agencies SHALL allow users who are not shared drive members to be added to files.FailShallThe following OUs are non-compliant:
    • Org Name: People who aren't shared drive members can be added to files
    GWS.DRIVEDOCS.2.4v0.3Agencies SHALL NOT allow viewers and commenters to download, print, and copy files.FailShallThe following OUs are non-compliant:
    • Org Name: Viewers and commenters are allowed to download, print, and copy files

    DRIVEDOCS-3 Security Updates for Files

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.DRIVEDOCS.3.1v0.3Agencies SHALL enable the security update for Drive files.PassShallRequirement met in all OUs and groups.

    DRIVEDOCS-4 Drive SDK

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.DRIVEDOCS.4.1v0.3Agencies SHOULD disable Drive SDK access.WarningShouldThe following OUs are non-compliant:
    • Lisa Cross: Drive SDK is enabled

    DRIVEDOCS-5 User Installation of Drive and Docs Add-Ons

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.DRIVEDOCS.5.1v0.3Agencies SHALL disable Add-Ons.FailShallThe following OUs are non-compliant:
    • Org Name: Users can install Google Docs add-ons from add-ons store.

    DRIVEDOCS-6 Drive for Desktop

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.DRIVEDOCS.6.1v0.3Google Drive for Desktop SHOULD be enabled only for authorized devices.WarningShouldThe following groups are non-compliant:
    • robertcampbell@example.net: Drive for Desktop is enabled and can be used on any device.
    • robertcampbell@example.net: Drive for Desktop is enabled and can be used on any device.
    • robertcampbell@example.net: Drive for Desktop is enabled and can be used on any device.

    DRIVEDOCS-7 DLP rules

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.DRIVEDOCS.7.1v0.3Agencies SHOULD configure DLP rules to block or warn on sharing files with sensitive data.OmittedShould/Not-ImplementedTest omitted by user. The DLP capability required by the baselines is implemented by third party product, [x], which ScubaGoggles does not have the ability to check.
    +
    + \ No newline at end of file diff --git a/sample-report/IndividualReports/GmailReport.html b/scubagoggles/sample-report/IndividualReports/GmailReport.html similarity index 97% rename from sample-report/IndividualReports/GmailReport.html rename to scubagoggles/sample-report/IndividualReports/GmailReport.html index 9e735cab..7180ca8b 100644 --- a/sample-report/IndividualReports/GmailReport.html +++ b/scubagoggles/sample-report/IndividualReports/GmailReport.html @@ -1,768 +1,768 @@ - - - - Gmail Baseline Report - - - - - -
    -
    - Return to the report summary - -
    -

    Gmail Baseline Report

    -


    -
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    -

    GMAIL-1 Mail Delegation

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.1.1v0.3Mail Delegation SHOULD be disabled.PassShouldRequirement met in all OUs and groups.

    GMAIL-2 DomainKeys Identified Mail

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.2.1v0.3DKIM SHOULD be enabled for all domains.PassShouldRequirement met.

    GMAIL-3 Sender Policy Framework

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.3.1v0.3An SPF policy SHALL be published for each domain that fails all non-approved senders.FailShall1 of 2 agency domain(s) found in violation: example.org.

    GMAIL-4 Domain-based Message Authentication, Reporting, and Conformance

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.4.1v0.3A DMARC policy SHALL be published for every second-level domain.FailShall1 of 2 agency domain(s) found in violation: example.org.
    GWS.GMAIL.4.2v0.3The DMARC message rejection option SHALL be p=reject.FailShall1 of 2 agency domain(s) found in violation: example.org.
    GWS.GMAIL.4.3v0.3The DMARC point of contact for aggregate reports SHALL include `reports@dmarc.cyber.dhs.gov`.FailShall1 of 2 agency domain(s) found in violation: example.org.
    GWS.GMAIL.4.4v0.3An agency point of contact SHOULD be included for aggregate and failure reports.WarningShould1 of 2 agency domain(s) found in violation: example.org.

    GMAIL-5 Attachment Protections

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.5.1v0.3Protect against encrypted attachments from untrusted senders SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.5.2v0.3Protect against attachments with scripts from untrusted senders SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.5.3v0.3Protect against anomalous attachment types in emails SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.5.4v0.3Google SHOULD be allowed to automatically apply future recommended settings for attachments.PassShouldRequirement met in all OUs and groups.
    GWS.GMAIL.5.5v0.3Emails flagged by the above attachment protection controls SHALL NOT be kept in inbox.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.5.6v0.3Any third-party or outside application selected for attachment protection SHOULD offer services comparable to those offered by Google Workspace.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please check manually.

    GMAIL-6 Links and External Images Protection

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.6.1v0.3Identify links behind shortened URLs SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.6.2v0.3Scan linked images SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.6.3v0.3Show warning prompt for any click on links to untrusted domains SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.6.4v0.3Google SHALL be allowed to automatically apply future recommended settings for links and external images.PassShouldRequirement met in all OUs and groups.
    GWS.GMAIL.6.5v0.3Any third-party or outside application selected for links and external images protection SHOULD offer services comparable to those offered by Google Workspace.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    GMAIL-7 Spoofing and Authentication Protection

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.7.1v0.3Protect against domain spoofing based on similar domain names SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.7.2v0.3Protect against spoofing of employee names SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.7.3v0.3Protect against inbound emails spoofing your domain SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.7.4v0.3Protect against any unauthenticated emails SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.7.5v0.3Protect your Groups from inbound emails spoofing your domain SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.7.6v0.3Emails flagged by the above spoofing and authentication controls SHALL NOT be kept in inbox.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.7.7v0.3Google SHALL be allowed to automatically apply future recommended settings for spoofing and authentication.PassShouldRequirement met in all OUs and groups.
    GWS.GMAIL.7.8v0.3Any third-party or outside application selected for spoofing and authentication protection SHOULD offer services comparable to those offered by Google Workspace.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    GMAIL-8 User Email Uploads

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.8.1v0.3User email uploads SHALL be disabled to protect against unauthorized files being introduced into the secured environment.PassShallRequirement met in all OUs and groups.

    GMAIL-9 POP and IMAP Access for Users

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.9.1v0.3POP and IMAP access SHALL be disabled to protect sensitive agency or organization emails from being accessed through legacy applications or other third-party mail clients.PassShallRequirement met in all OUs and groups.

    GMAIL-10 Google Workspace Sync

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.10.1v0.3Google Workspace Sync SHOULD be disabled.FailShallThe following OUs are non-compliant:
    • Timothy Pitts: Automatically enable outlook sync is set to enabled
    GWS.GMAIL.10.2v0.3Google Workspace Sync MAY be enabled on a per-user basis as needed.N/AMay/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    GMAIL-11 Automatic Forwarding

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.11.1v0.3Automatic forwarding SHOULD be disabled, especially to external domains.PassShallRequirement met in all OUs and groups.

    GMAIL-12 Per-user Outbound Gateways

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.12.1v0.3Using a per-user outbound gateway that is a mail server other than the Google Workspace mail servers SHALL be disabled.PassShallRequirement met in all OUs and groups.

    GMAIL-13 Unintended External Reply Warning

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.13.1v0.3Unintended external reply warnings SHALL be enabled.PassShallRequirement met in all OUs and groups.

    GMAIL-14 Email Allowlist

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.14.1v0.3An email allowlist SHOULD not be implemented.WarningShouldEmail allowlists are enabled in Org Name.

    GMAIL-15 Enhanced Pre-Delivery Message Scanning

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.15.1v0.3Enhanced pre-delivery message scanning SHALL be enabled to prevent phishing.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.15.2v0.3Any third-party or outside application selected for enhanced pre-delivery message scanning SHOULD offer services comparable to those offered by Google Workspace.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    GMAIL-16 Security Sandbox

    - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.16.1v0.3Security sandbox SHOULD be enabled to provide additional protections for their email messages.PassShouldRequirement met in all OUs and groups.
    GWS.GMAIL.16.2v0.3Any third-party or outside application selected for security sandbox SHOULD offer services comparable to those offered by Google Workspace.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    GMAIL-17 Comprehensive Mail Storage

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.17.1v0.3Comprehensive mail storage SHOULD be enabled to allow tracking of information across applications.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    GMAIL-18 Content Compliance Filtering

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.18.1v0.3Content filtering SHOULD be enabled within Gmail messages.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.GMAIL.18.2v0.3Any third-party or outside application selected for advanced email content filtering SHOULD offer services comparable to those offered by Google Workspace.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.GMAIL.18.3v0.3Gmail or third-party applications SHALL be configured to protect PII and sensitive information as defined by the agency. At a minimum, credit card numbers, taxpayer Identification Numbers (TIN), and Social Security Numbers (SSN) SHALL be blocked.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    GMAIL-19 Spam Filtering

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.19.1v0.3Domains SHALL NOT be added to lists that bypass spam filters.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.GMAIL.19.2v0.3Domains SHALL NOT be added to lists that bypass spam filters and hide warnings.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.GMAIL.19.3v0.3Bypass spam filters and hide warnings for all messages from internal and external senders SHALL NOT be enabled.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    -
    - + + + + Gmail Baseline Report + + + + + +
    +
    + Return to the report summary + +
    +

    Gmail Baseline Report

    +


    +
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    +

    GMAIL-1 Mail Delegation

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.1.1v0.3Mail Delegation SHOULD be disabled.PassShouldRequirement met in all OUs and groups.

    GMAIL-2 DomainKeys Identified Mail

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.2.1v0.3DKIM SHOULD be enabled for all domains.PassShouldRequirement met.

    GMAIL-3 Sender Policy Framework

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.3.1v0.3An SPF policy SHALL be published for each domain that fails all non-approved senders.FailShall1 of 2 agency domain(s) found in violation: example.org.

    GMAIL-4 Domain-based Message Authentication, Reporting, and Conformance

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.4.1v0.3A DMARC policy SHALL be published for every second-level domain.FailShall1 of 2 agency domain(s) found in violation: example.org.
    GWS.GMAIL.4.2v0.3The DMARC message rejection option SHALL be p=reject.FailShall1 of 2 agency domain(s) found in violation: example.org.
    GWS.GMAIL.4.3v0.3The DMARC point of contact for aggregate reports SHALL include `reports@dmarc.cyber.dhs.gov`.FailShall1 of 2 agency domain(s) found in violation: example.org.
    GWS.GMAIL.4.4v0.3An agency point of contact SHOULD be included for aggregate and failure reports.WarningShould1 of 2 agency domain(s) found in violation: example.org.

    GMAIL-5 Attachment Protections

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.5.1v0.3Protect against encrypted attachments from untrusted senders SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.5.2v0.3Protect against attachments with scripts from untrusted senders SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.5.3v0.3Protect against anomalous attachment types in emails SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.5.4v0.3Google SHOULD be allowed to automatically apply future recommended settings for attachments.PassShouldRequirement met in all OUs and groups.
    GWS.GMAIL.5.5v0.3Emails flagged by the above attachment protection controls SHALL NOT be kept in inbox.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.5.6v0.3Any third-party or outside application selected for attachment protection SHOULD offer services comparable to those offered by Google Workspace.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please check manually.

    GMAIL-6 Links and External Images Protection

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.6.1v0.3Identify links behind shortened URLs SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.6.2v0.3Scan linked images SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.6.3v0.3Show warning prompt for any click on links to untrusted domains SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.6.4v0.3Google SHALL be allowed to automatically apply future recommended settings for links and external images.PassShouldRequirement met in all OUs and groups.
    GWS.GMAIL.6.5v0.3Any third-party or outside application selected for links and external images protection SHOULD offer services comparable to those offered by Google Workspace.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    GMAIL-7 Spoofing and Authentication Protection

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.7.1v0.3Protect against domain spoofing based on similar domain names SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.7.2v0.3Protect against spoofing of employee names SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.7.3v0.3Protect against inbound emails spoofing your domain SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.7.4v0.3Protect against any unauthenticated emails SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.7.5v0.3Protect your Groups from inbound emails spoofing your domain SHALL be enabled.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.7.6v0.3Emails flagged by the above spoofing and authentication controls SHALL NOT be kept in inbox.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.7.7v0.3Google SHALL be allowed to automatically apply future recommended settings for spoofing and authentication.PassShouldRequirement met in all OUs and groups.
    GWS.GMAIL.7.8v0.3Any third-party or outside application selected for spoofing and authentication protection SHOULD offer services comparable to those offered by Google Workspace.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    GMAIL-8 User Email Uploads

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.8.1v0.3User email uploads SHALL be disabled to protect against unauthorized files being introduced into the secured environment.PassShallRequirement met in all OUs and groups.

    GMAIL-9 POP and IMAP Access for Users

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.9.1v0.3POP and IMAP access SHALL be disabled to protect sensitive agency or organization emails from being accessed through legacy applications or other third-party mail clients.PassShallRequirement met in all OUs and groups.

    GMAIL-10 Google Workspace Sync

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.10.1v0.3Google Workspace Sync SHOULD be disabled.FailShallThe following OUs are non-compliant:
    • Timothy Pitts: Automatically enable outlook sync is set to enabled
    GWS.GMAIL.10.2v0.3Google Workspace Sync MAY be enabled on a per-user basis as needed.N/AMay/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    GMAIL-11 Automatic Forwarding

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.11.1v0.3Automatic forwarding SHOULD be disabled, especially to external domains.PassShallRequirement met in all OUs and groups.

    GMAIL-12 Per-user Outbound Gateways

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.12.1v0.3Using a per-user outbound gateway that is a mail server other than the Google Workspace mail servers SHALL be disabled.PassShallRequirement met in all OUs and groups.

    GMAIL-13 Unintended External Reply Warning

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.13.1v0.3Unintended external reply warnings SHALL be enabled.PassShallRequirement met in all OUs and groups.

    GMAIL-14 Email Allowlist

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.14.1v0.3An email allowlist SHOULD not be implemented.WarningShouldEmail allowlists are enabled in Org Name.

    GMAIL-15 Enhanced Pre-Delivery Message Scanning

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.15.1v0.3Enhanced pre-delivery message scanning SHALL be enabled to prevent phishing.PassShallRequirement met in all OUs and groups.
    GWS.GMAIL.15.2v0.3Any third-party or outside application selected for enhanced pre-delivery message scanning SHOULD offer services comparable to those offered by Google Workspace.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    GMAIL-16 Security Sandbox

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.16.1v0.3Security sandbox SHOULD be enabled to provide additional protections for their email messages.PassShouldRequirement met in all OUs and groups.
    GWS.GMAIL.16.2v0.3Any third-party or outside application selected for security sandbox SHOULD offer services comparable to those offered by Google Workspace.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    GMAIL-17 Comprehensive Mail Storage

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.17.1v0.3Comprehensive mail storage SHOULD be enabled to allow tracking of information across applications.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    GMAIL-18 Content Compliance Filtering

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.18.1v0.3Content filtering SHOULD be enabled within Gmail messages.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.GMAIL.18.2v0.3Any third-party or outside application selected for advanced email content filtering SHOULD offer services comparable to those offered by Google Workspace.N/AShould/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.GMAIL.18.3v0.3Gmail or third-party applications SHALL be configured to protect PII and sensitive information as defined by the agency. At a minimum, credit card numbers, taxpayer Identification Numbers (TIN), and Social Security Numbers (SSN) SHALL be blocked.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.

    GMAIL-19 Spam Filtering

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GMAIL.19.1v0.3Domains SHALL NOT be added to lists that bypass spam filters.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.GMAIL.19.2v0.3Domains SHALL NOT be added to lists that bypass spam filters and hide warnings.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    GWS.GMAIL.19.3v0.3Bypass spam filters and hide warnings for all messages from internal and external senders SHALL NOT be enabled.N/AShall/Not-ImplementedCurrently not able to be tested automatically; please manually check.
    +
    + \ No newline at end of file diff --git a/sample-report/IndividualReports/GroupsReport.html b/scubagoggles/sample-report/IndividualReports/GroupsReport.html similarity index 96% rename from sample-report/IndividualReports/GroupsReport.html rename to scubagoggles/sample-report/IndividualReports/GroupsReport.html index d2168f84..32855982 100644 --- a/sample-report/IndividualReports/GroupsReport.html +++ b/scubagoggles/sample-report/IndividualReports/GroupsReport.html @@ -1,358 +1,358 @@ - - - - Groups for Business Baseline Report - - - - - -
    -
    - Return to the report summary - -
    -

    Groups for Business Baseline Report

    -


    -
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    -

    GROUPS-1 External Group Access

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GROUPS.1.1v0.3Group access from outside the organization SHALL be disabled unless explicitly granted by the group owner.PassShallRequirement met in all OUs and groups.

    GROUPS-2 Adding External Members

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GROUPS.2.1v0.3Group owners' ability to add external members to groups SHOULD be disabled unless necessary for agency mission fulfillment.PassShouldRequirement met in all OUs and groups.

    GROUPS-3 Allowing Posting by External Members

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GROUPS.3.1v0.3Group owners' ability to allow posting to a group by an external, non-group member SHOULD be disabled unless necessary for agency mission fulfillment.PassShouldRequirement met in all OUs and groups.

    GROUPS-4 Group Creation

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GROUPS.4.1v0.3Group creation SHOULD be restricted to admins within the organization unless necessary for agency mission fulfillment.WarningShouldThe following OUs are non-compliant:
    • Org Name: Anyone on the internet can create groups

    GROUPS-5 Default Permissions for Viewing Conversations

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GROUPS.5.1v0.3The default permission to view conversations SHOULD be set to All Group Members.PassShouldRequirement met in all OUs and groups.

    GROUPS-6 Ability to Hide Groups from the Directory

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GROUPS.6.1v0.3The Ability for Groups to be Hidden from the Directory SHALL be disabled.PassShallRequirement met in all OUs and groups.

    GROUPS-7 New Groups

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.GROUPS.7.1v0.3New Groups SHOULD be created with an Access type of Restricted unless necessary for agency mission fulfillment.PassShouldRequirement met in all groups.
    -
    - + + + + Groups for Business Baseline Report + + + + + +
    +
    + Return to the report summary + +
    +

    Groups for Business Baseline Report

    +


    +
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    +

    GROUPS-1 External Group Access

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GROUPS.1.1v0.3Group access from outside the organization SHALL be disabled unless explicitly granted by the group owner.PassShallRequirement met in all OUs and groups.

    GROUPS-2 Adding External Members

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GROUPS.2.1v0.3Group owners' ability to add external members to groups SHOULD be disabled unless necessary for agency mission fulfillment.PassShouldRequirement met in all OUs and groups.

    GROUPS-3 Allowing Posting by External Members

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GROUPS.3.1v0.3Group owners' ability to allow posting to a group by an external, non-group member SHOULD be disabled unless necessary for agency mission fulfillment.PassShouldRequirement met in all OUs and groups.

    GROUPS-4 Group Creation

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GROUPS.4.1v0.3Group creation SHOULD be restricted to admins within the organization unless necessary for agency mission fulfillment.WarningShouldThe following OUs are non-compliant:
    • Org Name: Anyone on the internet can create groups

    GROUPS-5 Default Permissions for Viewing Conversations

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GROUPS.5.1v0.3The default permission to view conversations SHOULD be set to All Group Members.PassShouldRequirement met in all OUs and groups.

    GROUPS-6 Ability to Hide Groups from the Directory

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GROUPS.6.1v0.3The Ability for Groups to be Hidden from the Directory SHALL be disabled.PassShallRequirement met in all OUs and groups.

    GROUPS-7 New Groups

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.GROUPS.7.1v0.3New Groups SHOULD be created with an Access type of Restricted unless necessary for agency mission fulfillment.PassShouldRequirement met in all groups.
    +
    + \ No newline at end of file diff --git a/sample-report/IndividualReports/MeetReport.html b/scubagoggles/sample-report/IndividualReports/MeetReport.html similarity index 96% rename from sample-report/IndividualReports/MeetReport.html rename to scubagoggles/sample-report/IndividualReports/MeetReport.html index 64998130..b5c1a7ce 100644 --- a/sample-report/IndividualReports/MeetReport.html +++ b/scubagoggles/sample-report/IndividualReports/MeetReport.html @@ -1,320 +1,320 @@ - - - - Google Meet Baseline Report - - - - - -
    -
    - Return to the report summary - -
    -

    Google Meet Baseline Report

    -


    -
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    -

    MEET-1 Meeting Access

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.MEET.1.1v0.3Meeting access SHOULD be restricted to users signed in with a Google Account or Dialing in using a phone.PassShouldRequirement met in all OUs and groups.

    MEET-2 Internal Access to External Meetings

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.MEET.2.1v0.3Meeting access SHALL be disabled for meetings created by users who are not members of any Google Workspace tenant or organization.PassShallRequirement met in all OUs and groups.

    MEET-3 Host Management Meeting Features

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.MEET.3.1v0.3Host Management meeting features SHALL be enabled.PassShallRequirement met in all OUs and groups.

    MEET-4 External Participants

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.MEET.4.1v0.3Warn for external participants SHALL be enabled.PassShallRequirement met in all OUs and groups.

    MEET-5 Incoming Calls

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.MEET.5.1v0.3Incoming calls SHALL be restricted to contacts and other users in the organization.PassShallRequirement met in all OUs and groups.
    -
    - + + + + Google Meet Baseline Report + + + + + +
    +
    + Return to the report summary + +
    +

    Google Meet Baseline Report

    +


    +
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    +

    MEET-1 Meeting Access

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.MEET.1.1v0.3Meeting access SHOULD be restricted to users signed in with a Google Account or Dialing in using a phone.PassShouldRequirement met in all OUs and groups.

    MEET-2 Internal Access to External Meetings

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.MEET.2.1v0.3Meeting access SHALL be disabled for meetings created by users who are not members of any Google Workspace tenant or organization.PassShallRequirement met in all OUs and groups.

    MEET-3 Host Management Meeting Features

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.MEET.3.1v0.3Host Management meeting features SHALL be enabled.PassShallRequirement met in all OUs and groups.

    MEET-4 External Participants

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.MEET.4.1v0.3Warn for external participants SHALL be enabled.PassShallRequirement met in all OUs and groups.

    MEET-5 Incoming Calls

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.MEET.5.1v0.3Incoming calls SHALL be restricted to contacts and other users in the organization.PassShallRequirement met in all OUs and groups.
    +
    + \ No newline at end of file diff --git a/sample-report/IndividualReports/RulesReport.html b/scubagoggles/sample-report/IndividualReports/RulesReport.html similarity index 97% rename from sample-report/IndividualReports/RulesReport.html rename to scubagoggles/sample-report/IndividualReports/RulesReport.html index 7f40bf36..f5a088a2 100644 --- a/sample-report/IndividualReports/RulesReport.html +++ b/scubagoggles/sample-report/IndividualReports/RulesReport.html @@ -1,510 +1,510 @@ - - - - Rules Baseline Report - - - - - -
    -
    - Return to the report summary - -
    -

    Rules Baseline Report

    -


    -
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    -

    RULES-13 System-defined Rules

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Control IDRule NameResultCriticalityRule Description
    GWS.COMMONCONTROLS.13.1v0.3Domain data export initiatedNo events foundShallA Super Administrator for your Google account has started exporting data from your domain.
    GWS.COMMONCONTROLS.13.1v0.3[Beta] Client-side encryption service unavailableNo events foundShallA problem has been detected with your client-side encryption service indicating an outage or misconfigured setting.
    GWS.COMMONCONTROLS.13.1v0.3User-reported phishingNo events foundShallA sender has sent messages to your domain that users have classified as phishings.
    GWS.COMMONCONTROLS.13.1v0.3Suspicious message reportedNo events foundShallA sender has sent messages to your domain that users have classified as spam.
    GWS.COMMONCONTROLS.13.1v0.3Suspended user made activeNo events foundShallA suspended user is made active.
    GWS.COMMONCONTROLS.13.1v0.3User suspended (by admin)No events foundShallAn admin has suspended the account.
    GWS.COMMONCONTROLS.13.1v0.3Spike in user-reported spamNo events foundShallAn unusually high volume of messages from a sender that users have marked as spam.
    GWS.COMMONCONTROLS.13.1v0.3Google Voice configuration problemNo events foundShallAuto attendants and ring groups with invalid references may hang up at unexpected times.
    GWS.COMMONCONTROLS.13.1v0.3Directory sync cancelled due to safeguard threshold exceededNo events foundShallDirectory sync has been automatically cancelled and disabled as the directory sync service detected a possibility to exceed deprovisioning safeguard threshold.
    GWS.COMMONCONTROLS.13.1v0.3Account suspension warningNo events foundShallGoogle Workspace accounts engaging in suspicious activity may have their account suspended. Google Workspace accounts must comply with the Google Workspace Terms of Service, Google Workspace for Education Terms of Service, Google Cloud Platform Terms of Service or Cloud Identity Terms of Service.
    GWS.COMMONCONTROLS.13.1v0.3Leaked passwordNo events foundShallGoogle detected compromised credentials requiring a reset of the user's password.
    GWS.COMMONCONTROLS.13.1v0.3User suspended (Google identity alert)No events foundShallGoogle detected suspicious activity and suspended the account.
    GWS.COMMONCONTROLS.13.1v0.3User suspended for spammingNo events foundShallGoogle detected suspicious activity such as spamming and suspended the account.
    GWS.COMMONCONTROLS.13.1v0.3User suspended for spamming through relayNo events foundShallGoogle detected suspicious activity such as spamming through a SMTP relay service and suspended the account.
    GWS.COMMONCONTROLS.13.1v0.3Suspicious programmatic loginNo events foundShallGoogle detected suspicious login attempts from potential applications or computer programs.
    GWS.COMMONCONTROLS.13.1v0.3User suspended due to suspicious activityNo events foundShallGoogle suspended a user's account due to a potential compromise detected.
    GWS.COMMONCONTROLS.13.1v0.3Gmail potential employee spoofingNo events foundShallIncoming messages where a sender's name is in your Google Workspace directory, but the mail is not from your company's domains or domain aliases.
    GWS.COMMONCONTROLS.13.1v0.3Phishing in inboxes due to bad whitelistNo events foundShallMessages classified as spam by Gmail filters delivered to user inboxes due to whitelisting settings in the Google Admin console that override the spam filters.
    GWS.COMMONCONTROLS.13.1v0.3Malware message detected post-deliveryNo events foundShallMessages detected as malware post-delivery that are automatically reclassified.
    GWS.COMMONCONTROLS.13.1v0.3Phishing message detected post-deliveryNo events foundShallMessages detected as phishing post-delivery that are automatically reclassified.
    GWS.COMMONCONTROLS.13.1v0.3TLS failureNo events foundShallMessages requiring Transport Layer Security (TLS) can't be delivered.
    GWS.COMMONCONTROLS.13.1v0.3Device compromisedNo events foundShallProvides details about devices in your domain that have entered a compromised state.
    GWS.COMMONCONTROLS.13.1v0.3Google OperationsNo events foundShallProvides details about security and privacy issues that affect your Google Workspace services.
    GWS.COMMONCONTROLS.13.1v0.3Suspicious device activityNo events foundShallProvides details if device properties such as device ID, serial number, type of device, or device manufacturer are updated.
    GWS.COMMONCONTROLS.13.1v0.3Government-backed attacksNo events foundShallWarnings about potential government-backed attacks.
    GWS.COMMONCONTROLS.13.1v0.3Rate limited recipientNo events foundShouldA high rate of incoming email indicating a potential malicious attack or misconfigured setting.
    GWS.COMMONCONTROLS.13.1v0.3User deletedNo events foundShouldA user has been deleted from the domain.
    GWS.COMMONCONTROLS.13.1v0.3App Maker Cloud SQL setupNo events foundShouldA user has requested a Google Cloud SQL instance to be set up for use with App Maker.
    GWS.COMMONCONTROLS.13.1v0.3Apps outage alertNo events foundShouldAlerts about new, updated, or resolved outage on the Google Workspace Status Dashboard.
    GWS.COMMONCONTROLS.13.1v0.3Smarthost failureNo events foundShouldAlerts if a large number of messages can't be delivered to one of your smart host servers.
    GWS.COMMONCONTROLS.13.1v0.3Calendar settings changedNo events foundShouldAn admin has changed Google Workspace Calendar settings.
    GWS.COMMONCONTROLS.13.1v0.3Drive settings changedNo events foundShouldAn admin has changed Google Workspace Drive settings.
    GWS.COMMONCONTROLS.13.1v0.3Email settings changedNo events foundShouldAn admin has changed Google Workspace Gmail settings.
    GWS.COMMONCONTROLS.13.1v0.3Mobile settings changedNo events foundShouldAn admin has changed mobile management settings.
    GWS.COMMONCONTROLS.13.1v0.3Exchange journaling failureNo events foundShouldFailures with Exchange journaling that ensures email traffic generated by Microsoft® Exchange server users is properly archived in Google Vault.
    GWS.COMMONCONTROLS.13.1v0.3New user addedPassShouldA new user has been added to the domain.
    GWS.COMMONCONTROLS.13.1v0.3User granted Admin privilegePassShallA user is granted an admin privilege.
    GWS.COMMONCONTROLS.13.1v0.3User's Admin privilege revokedPassShallA user is revoked of their admin privilege.
    GWS.COMMONCONTROLS.13.1v0.3Suspicious loginFailShallGoogle detected a sign-in attempt that doesn't match a user's normal behavior, such as a sign-in from an unusual location.
    -
    - + + + + Rules Baseline Report + + + + + +
    +
    + Return to the report summary + +
    +

    Rules Baseline Report

    +


    +
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    +

    RULES-13 System-defined Rules

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Control IDRule NameResultCriticalityRule Description
    GWS.COMMONCONTROLS.13.1v0.3Domain data export initiatedNo events foundShallA Super Administrator for your Google account has started exporting data from your domain.
    GWS.COMMONCONTROLS.13.1v0.3[Beta] Client-side encryption service unavailableNo events foundShallA problem has been detected with your client-side encryption service indicating an outage or misconfigured setting.
    GWS.COMMONCONTROLS.13.1v0.3User-reported phishingNo events foundShallA sender has sent messages to your domain that users have classified as phishings.
    GWS.COMMONCONTROLS.13.1v0.3Suspicious message reportedNo events foundShallA sender has sent messages to your domain that users have classified as spam.
    GWS.COMMONCONTROLS.13.1v0.3Suspended user made activeNo events foundShallA suspended user is made active.
    GWS.COMMONCONTROLS.13.1v0.3User suspended (by admin)No events foundShallAn admin has suspended the account.
    GWS.COMMONCONTROLS.13.1v0.3Spike in user-reported spamNo events foundShallAn unusually high volume of messages from a sender that users have marked as spam.
    GWS.COMMONCONTROLS.13.1v0.3Google Voice configuration problemNo events foundShallAuto attendants and ring groups with invalid references may hang up at unexpected times.
    GWS.COMMONCONTROLS.13.1v0.3Directory sync cancelled due to safeguard threshold exceededNo events foundShallDirectory sync has been automatically cancelled and disabled as the directory sync service detected a possibility to exceed deprovisioning safeguard threshold.
    GWS.COMMONCONTROLS.13.1v0.3Account suspension warningNo events foundShallGoogle Workspace accounts engaging in suspicious activity may have their account suspended. Google Workspace accounts must comply with the Google Workspace Terms of Service, Google Workspace for Education Terms of Service, Google Cloud Platform Terms of Service or Cloud Identity Terms of Service.
    GWS.COMMONCONTROLS.13.1v0.3Leaked passwordNo events foundShallGoogle detected compromised credentials requiring a reset of the user's password.
    GWS.COMMONCONTROLS.13.1v0.3User suspended (Google identity alert)No events foundShallGoogle detected suspicious activity and suspended the account.
    GWS.COMMONCONTROLS.13.1v0.3User suspended for spammingNo events foundShallGoogle detected suspicious activity such as spamming and suspended the account.
    GWS.COMMONCONTROLS.13.1v0.3User suspended for spamming through relayNo events foundShallGoogle detected suspicious activity such as spamming through a SMTP relay service and suspended the account.
    GWS.COMMONCONTROLS.13.1v0.3Suspicious programmatic loginNo events foundShallGoogle detected suspicious login attempts from potential applications or computer programs.
    GWS.COMMONCONTROLS.13.1v0.3User suspended due to suspicious activityNo events foundShallGoogle suspended a user's account due to a potential compromise detected.
    GWS.COMMONCONTROLS.13.1v0.3Gmail potential employee spoofingNo events foundShallIncoming messages where a sender's name is in your Google Workspace directory, but the mail is not from your company's domains or domain aliases.
    GWS.COMMONCONTROLS.13.1v0.3Phishing in inboxes due to bad whitelistNo events foundShallMessages classified as spam by Gmail filters delivered to user inboxes due to whitelisting settings in the Google Admin console that override the spam filters.
    GWS.COMMONCONTROLS.13.1v0.3Malware message detected post-deliveryNo events foundShallMessages detected as malware post-delivery that are automatically reclassified.
    GWS.COMMONCONTROLS.13.1v0.3Phishing message detected post-deliveryNo events foundShallMessages detected as phishing post-delivery that are automatically reclassified.
    GWS.COMMONCONTROLS.13.1v0.3TLS failureNo events foundShallMessages requiring Transport Layer Security (TLS) can't be delivered.
    GWS.COMMONCONTROLS.13.1v0.3Device compromisedNo events foundShallProvides details about devices in your domain that have entered a compromised state.
    GWS.COMMONCONTROLS.13.1v0.3Google OperationsNo events foundShallProvides details about security and privacy issues that affect your Google Workspace services.
    GWS.COMMONCONTROLS.13.1v0.3Suspicious device activityNo events foundShallProvides details if device properties such as device ID, serial number, type of device, or device manufacturer are updated.
    GWS.COMMONCONTROLS.13.1v0.3Government-backed attacksNo events foundShallWarnings about potential government-backed attacks.
    GWS.COMMONCONTROLS.13.1v0.3Rate limited recipientNo events foundShouldA high rate of incoming email indicating a potential malicious attack or misconfigured setting.
    GWS.COMMONCONTROLS.13.1v0.3User deletedNo events foundShouldA user has been deleted from the domain.
    GWS.COMMONCONTROLS.13.1v0.3App Maker Cloud SQL setupNo events foundShouldA user has requested a Google Cloud SQL instance to be set up for use with App Maker.
    GWS.COMMONCONTROLS.13.1v0.3Apps outage alertNo events foundShouldAlerts about new, updated, or resolved outage on the Google Workspace Status Dashboard.
    GWS.COMMONCONTROLS.13.1v0.3Smarthost failureNo events foundShouldAlerts if a large number of messages can't be delivered to one of your smart host servers.
    GWS.COMMONCONTROLS.13.1v0.3Calendar settings changedNo events foundShouldAn admin has changed Google Workspace Calendar settings.
    GWS.COMMONCONTROLS.13.1v0.3Drive settings changedNo events foundShouldAn admin has changed Google Workspace Drive settings.
    GWS.COMMONCONTROLS.13.1v0.3Email settings changedNo events foundShouldAn admin has changed Google Workspace Gmail settings.
    GWS.COMMONCONTROLS.13.1v0.3Mobile settings changedNo events foundShouldAn admin has changed mobile management settings.
    GWS.COMMONCONTROLS.13.1v0.3Exchange journaling failureNo events foundShouldFailures with Exchange journaling that ensures email traffic generated by Microsoft® Exchange server users is properly archived in Google Vault.
    GWS.COMMONCONTROLS.13.1v0.3New user addedPassShouldA new user has been added to the domain.
    GWS.COMMONCONTROLS.13.1v0.3User granted Admin privilegePassShallA user is granted an admin privilege.
    GWS.COMMONCONTROLS.13.1v0.3User's Admin privilege revokedPassShallA user is revoked of their admin privilege.
    GWS.COMMONCONTROLS.13.1v0.3Suspicious loginFailShallGoogle detected a sign-in attempt that doesn't match a user's normal behavior, such as a sign-in from an unusual location.
    +
    + \ No newline at end of file diff --git a/sample-report/IndividualReports/SitesReport.html b/scubagoggles/sample-report/IndividualReports/SitesReport.html similarity index 96% rename from sample-report/IndividualReports/SitesReport.html rename to scubagoggles/sample-report/IndividualReports/SitesReport.html index c425e3d2..17c44863 100644 --- a/sample-report/IndividualReports/SitesReport.html +++ b/scubagoggles/sample-report/IndividualReports/SitesReport.html @@ -1,244 +1,244 @@ - - - - Google Sites Baseline Report - - - - - -
    -
    - Return to the report summary - -
    -

    Google Sites Baseline Report

    -


    -
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    -

    SITES-1 Sites Service Status

    - - - - - - - - - - - - - - - - - - -
    Control IDRequirementResultCriticalityDetails
    GWS.SITES.1.1v0.3Sites Service SHOULD be disabled for all users.PassShouldRequirement met in all OUs and groups.
    -
    - + + + + Google Sites Baseline Report + + + + + +
    +
    + Return to the report summary + +
    +

    Google Sites Baseline Report

    +


    +
    Customer Domain Report DateBaseline VersionTool Version
    example.org10/11/2024 14:01:08 Pacific Daylight Time0.30.3.0
    +

    SITES-1 Sites Service Status

    + + + + + + + + + + + + + + + + + + +
    Control IDRequirementResultCriticalityDetails
    GWS.SITES.1.1v0.3Sites Service SHOULD be disabled for all users.PassShouldRequirement met in all OUs and groups.
    +
    + \ No newline at end of file diff --git a/sample-report/IndividualReports/images/cisa_logo.png b/scubagoggles/sample-report/IndividualReports/images/cisa_logo.png similarity index 100% rename from sample-report/IndividualReports/images/cisa_logo.png rename to scubagoggles/sample-report/IndividualReports/images/cisa_logo.png diff --git a/sample-report/IndividualReports/images/triangle-exclamation-solid.svg b/scubagoggles/sample-report/IndividualReports/images/triangle-exclamation-solid.svg similarity index 100% rename from sample-report/IndividualReports/images/triangle-exclamation-solid.svg rename to scubagoggles/sample-report/IndividualReports/images/triangle-exclamation-solid.svg diff --git a/sample-report/ScubaResults.json b/scubagoggles/sample-report/ScubaResults.json similarity index 97% rename from sample-report/ScubaResults.json rename to scubagoggles/sample-report/ScubaResults.json index 83f7f423..342e9268 100644 --- a/sample-report/ScubaResults.json +++ b/scubagoggles/sample-report/ScubaResults.json @@ -1,254474 +1,254474 @@ -{ - "MetaData": { - "TenantId": null, - "DisplayName": null, - "DomainName": "example.org", - "ProductSuite": "GWS", - "ProductsAssessed": [ - "Google Calendar", - "Google Chat", - "Google Classroom", - "Common Controls", - "Google Drive and Docs", - "Gmail", - "Groups for Business", - "Google Meet", - "Rules", - "Google Sites" - ], - "ProductAbbreviationMapping": { - "Gmail": "gmail", - "Google Calendar": "calendar", - "Groups for Business": "groups", - "Google Chat": "chat", - "Google Drive and Docs": "drive", - "Google Meet": "meet", - "Google Sites": "sites", - "Common Controls": "commoncontrols", - "Rules": "rules", - "Google Classroom": "classroom" - }, - "Tool": "ScubaGoggles", - "ToolVersion": "0.3.0", - "TimeStampZulu": "2024-10-11T21:01:08.026Z" - }, - "Summary": { - "calendar": { - "Manual": 1, - "Passes": 4, - "Errors": 0, - "Failures": 1, - "Warnings": 0, - "Omit": 0 - }, - "chat": { - "Manual": 0, - "Passes": 7, - "Errors": 0, - "Failures": 0, - "Warnings": 0, - "Omit": 1 - }, - "classroom": { - "Manual": 0, - "Passes": 6, - "Errors": 0, - "Failures": 0, - "Warnings": 0, - "Omit": 0 - }, - "commoncontrols": { - "Manual": 14, - "Passes": 12, - "Errors": 0, - "Failures": 6, - "Warnings": 0, - "Omit": 0 - }, - "drive": { - "Manual": 0, - "Passes": 10, - "Errors": 0, - "Failures": 3, - "Warnings": 3, - "Omit": 1 - }, - "gmail": { - "Manual": 13, - "Passes": 25, - "Errors": 0, - "Failures": 5, - "Warnings": 2, - "Omit": 0 - }, - "groups": { - "Manual": 0, - "Passes": 6, - "Errors": 0, - "Failures": 0, - "Warnings": 1, - "Omit": 0 - }, - "meet": { - "Manual": 0, - "Passes": 5, - "Errors": 0, - "Failures": 0, - "Warnings": 0, - "Omit": 0 - }, - "rules": { - "Manual": 35, - "Passes": 3, - "Errors": 0, - "Failures": 1, - "Warnings": 0, - "Omit": 0 - }, - "sites": { - "Manual": 0, - "Passes": 1, - "Errors": 0, - "Failures": 0, - "Warnings": 0, - "Omit": 0 - } - }, - "Results": { - "calendar": [ - { - "GroupName": "External Sharing Options", - "GroupNumber": "1", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/calendar.md#1-External-Sharing-Options", - "Controls": [ - { - "Control ID": "GWS.CALENDAR.1.1v0.3", - "Requirement": "External Sharing Options for Primary Calendars SHALL be configured to "Only free/busy information (hide event details)."", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.CALENDAR.1.2v0.3", - "Requirement": "External sharing options for secondary calendars SHALL be configured to "Only free/busy information (hide event details)."", - "Result": "Fail", - "Criticality": "Shall", - "Details": "Requirement not met.
    Highest Level of Sharing: Share all information, and outsiders can change calendars." - } - ] - }, - { - "GroupName": "External Invitations Warnings", - "GroupNumber": "2", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/calendar.md#2-External-Invitations-Warnings", - "Controls": [ - { - "Control ID": "GWS.CALENDAR.2.1v0.3", - "Requirement": "External invitations warnings SHALL be enabled to prompt users before sending invitations.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Calendar Interop Management", - "GroupNumber": "3", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/calendar.md#3-Calendar-Interop-Management", - "Controls": [ - { - "Control ID": "GWS.CALENDAR.3.1v0.3", - "Requirement": "Calendar Interop SHOULD be disabled.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met." - }, - { - "Control ID": "GWS.CALENDAR.3.2v0.3", - "Requirement": "OAuth 2.0 SHALL be used in lieu of basic authentication to establish connectivity between tenants or organizations in cases where Calendar Interop is deemed necessary for agency mission fulfillment.", - "Result": "N/A", - "Criticality": "Shall/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - } - ] - }, - { - "GroupName": "Paid Appointments", - "GroupNumber": "4", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/calendar.md#4-Paid-Appointments", - "Controls": [ - { - "Control ID": "GWS.CALENDAR.4.1v0.3", - "Requirement": "Appointment Schedule with Payments SHALL be disabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - } - ], - "chat": [ - { - "GroupName": "Chat History", - "GroupNumber": "1", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/chat.md#1-Chat-History", - "Controls": [ - { - "Control ID": "GWS.CHAT.1.1v0.3", - "Requirement": "Chat history SHALL be enabled for information traceability.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.CHAT.1.2v0.3", - "Requirement": "Users SHALL NOT be allowed to change their history setting.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "External File Sharing", - "GroupNumber": "2", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/chat.md#2-External-File-Sharing", - "Controls": [ - { - "Control ID": "GWS.CHAT.2.1v0.3", - "Requirement": "External file sharing SHALL be disabled to protect sensitive information from unauthorized or accidental sharing.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "History for Spaces", - "GroupNumber": "3", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/chat.md#3-History-for-Spaces", - "Controls": [ - { - "Control ID": "GWS.CHAT.3.1v0.3", - "Requirement": "Space history SHOULD be enabled for traceability of information.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "External Chat Messaging", - "GroupNumber": "4", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/chat.md#4-External-Chat-Messaging", - "Controls": [ - { - "Control ID": "GWS.CHAT.4.1v0.3", - "Requirement": "External Chat messaging SHALL be restricted to allowlisted domains only.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "DLP rules", - "GroupNumber": "5", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/chat.md#5-DLP-rules", - "Controls": [ - { - "Control ID": "GWS.CHAT.5.1v0.3", - "Requirement": "Agencies SHOULD configure DLP rules to block or warn on sharing files with sensitive data.", - "Result": "Omitted", - "Criticality": "Should/Not-Implemented", - "Details": "Test omitted by user. The DLP capability required by the baselines is implemented by third party product, [x], which ScubaGoggles does not have the ability to check." - } - ] - }, - { - "GroupName": "Content Reporting", - "GroupNumber": "6", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/chat.md#6-Content-Reporting", - "Controls": [ - { - "Control ID": "GWS.CHAT.6.1v0.3", - "Requirement": "Chat content reporting SHALL be enabled for all conversation types.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups.
    WARNING: from the log events alone, it is not possible to distinguish between an OU inheriting settings from its parent and content reporting being disabled entirely. It's possible this tool classified some child OUs as compliant due to this limitation; manual check recommended for child OUs due to this edge case." - }, - { - "Control ID": "GWS.CHAT.6.2v0.3", - "Requirement": "All reporting message categories SHOULD be selected.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - } - ] - } - ], - "classroom": [ - { - "GroupName": "Class Membership", - "GroupNumber": "1", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/classroom.md#1-Class-Membership", - "Controls": [ - { - "Control ID": "GWS.CLASSROOM.1.1v0.3", - "Requirement": "Who can join classes in your domain SHALL be set to Users in your domain only.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.CLASSROOM.1.2v0.3", - "Requirement": "Which classes users in your domain can join SHALL be set to Classes in your domain only.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Classroom API", - "GroupNumber": "2", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/classroom.md#2-Classroom-API", - "Controls": [ - { - "Control ID": "GWS.CLASSROOM.2.1v0.3", - "Requirement": "Users SHALL NOT be able to authorize apps to access their Google Classroom data.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Roster Import", - "GroupNumber": "3", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/classroom.md#3-Roster-Import", - "Controls": [ - { - "Control ID": "GWS.CLASSROOM.3.1v0.3", - "Requirement": "Roster import with Clever SHOULD be turned off.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Student Unenrollment", - "GroupNumber": "4", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/classroom.md#4-Student-Unenrollment", - "Controls": [ - { - "Control ID": "GWS.CLASSROOM.4.1v0.3", - "Requirement": "Only teachers SHALL be allowed to unenroll students from classes.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Class Creation", - "GroupNumber": "5", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/classroom.md#5-Class-Creation", - "Controls": [ - { - "Control ID": "GWS.CLASSROOM.5.1v0.3", - "Requirement": "Class creation SHALL be restricted to verified teachers only.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - } - ], - "commoncontrols": [ - { - "GroupName": "Phishing-Resistant Multi-Factor Authentication", - "GroupNumber": "1", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#1-Phishing-Resistant-Multi-Factor-Authentication", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.1.1v0.3", - "Requirement": "Phishing-Resistant MFA SHALL be required for all users.", - "Result": "No events found", - "Criticality": "Shall", - "Details": " No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended." - }, - { - "Control ID": "GWS.COMMONCONTROLS.1.2v0.3", - "Requirement": "Google 2SV new user enrollment period SHALL be set to 1 week.", - "Result": "Fail", - "Criticality": "Shall", - "Details": "The following OUs are non-compliant:
    • Org Name: New user enrollment period is set to 6 months
    " - }, - { - "Control ID": "GWS.COMMONCONTROLS.1.3v0.3", - "Requirement": "Allow users to trust the device SHALL be disabled.", - "Result": "Fail", - "Criticality": "Shall", - "Details": "The following groups are non-compliant:
    • wilsondennis@example.org: Allow user to trust the device is ON
    " - }, - { - "Control ID": "GWS.COMMONCONTROLS.1.4v0.3", - "Requirement": "If phishing-resistant MFA is not yet tenable, an MFA method from the following list SHALL be used in the interim.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Context-aware Access", - "GroupNumber": "2", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#2-Context-aware-Access", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.2.1v0.3", - "Requirement": "Policies restricting access to GWS based on signals about enterprise devices SHOULD be implemented.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met." - } - ] - }, - { - "GroupName": "Login Challenges", - "GroupNumber": "3", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#3-Login-Challenges", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.3.1v0.3", - "Requirement": "Login Challenges SHALL be enabled when third party SAML SSO is in use.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "User Session Duration", - "GroupNumber": "4", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#4-User-Session-Duration", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.4.1v0.3", - "Requirement": "Users SHALL be forced to re-authenticate after an established 12-hour GWS login session has expired.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Secure Passwords", - "GroupNumber": "5", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#5-Secure-Passwords", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.5.1v0.3", - "Requirement": "User password strength SHALL be enforced.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.COMMONCONTROLS.5.2v0.3", - "Requirement": "User password length SHALL be at least 12 characters.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.COMMONCONTROLS.5.3v0.3", - "Requirement": "Password policy SHALL be enforced at next sign-in.", - "Result": "Fail", - "Criticality": "Shall", - "Details": "The following OUs are non-compliant:
    • Org Name: Enforce password policy at next sign-in is OFF
    " - }, - { - "Control ID": "GWS.COMMONCONTROLS.5.4v0.3", - "Requirement": "User passwords SHALL NOT be reused.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.COMMONCONTROLS.5.5v0.3", - "Requirement": "User passwords SHALL NOT expire.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Highly Privileged Accounts", - "GroupNumber": "6", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#6-Highly-Privileged-Accounts", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.6.1v0.3", - "Requirement": "All highly privileged accounts SHALL leverage Google Account authentication with phishing-resistant MFA and not the agency's authoritative on-premises or federated identity system.", - "Result": "N/A", - "Criticality": "Shall/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - }, - { - "Control ID": "GWS.COMMONCONTROLS.6.2v0.3", - "Requirement": "A minimum of **two** and maximum of **eight** separate and distinct super admin users SHALL be configured.", - "Result": "Fail", - "Criticality": "Shall", - "Details": "The following super admins are configured: wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org. Note: Exceptions are allowed for \"break glass\" super admin accounts, though we are not able to account for this automatically." - } - ] - }, - { - "GroupName": "Conflicting Account Management", - "GroupNumber": "7", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#7-Conflicting-Account-Management", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.7.1v0.3", - "Requirement": "Account conflict management SHALL be configured to replace conflicting unmanaged accounts with managed ones.", - "Result": "N/A", - "Criticality": "Shall/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - } - ] - }, - { - "GroupName": "Catastrophic Recovery Options for Super Admins", - "GroupNumber": "8", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#8-Catastrophic-Recovery-Options-for-Super-Admins", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.8.1v0.3", - "Requirement": "Account self-recovery for Super Admins SHALL be disabled", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "GWS Advanced Protection Program", - "GroupNumber": "9", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#9-GWS-Advanced-Protection-Program", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.9.1v0.3", - "Requirement": "Highly privileged accounts SHALL be enrolled in the GWS Advanced Protection Program.", - "Result": "N/A", - "Criticality": "Shall/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - }, - { - "Control ID": "GWS.COMMONCONTROLS.9.2v0.3", - "Requirement": "All sensitive user accounts SHOULD be enrolled into the GWS Advanced Protection Program.", - "Result": "N/A", - "Criticality": "Should/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - } - ] - }, - { - "GroupName": "App Access to Google APIs", - "GroupNumber": "10", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#10-App-Access-to-Google-APIs", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.10.1v0.3", - "Requirement": "Agencies SHALL use GWS application access control policies to restrict access to all GWS services by third party apps.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met." - }, - { - "Control ID": "GWS.COMMONCONTROLS.10.2v0.3", - "Requirement": "Agencies SHALL NOT allow users to consent to access to low-risk scopes.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met." - }, - { - "Control ID": "GWS.COMMONCONTROLS.10.3v0.3", - "Requirement": "Agencies SHALL NOT trust unconfigured internal apps.", - "Result": "No events found", - "Criticality": "Shall", - "Details": " No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended." - }, - { - "Control ID": "GWS.COMMONCONTROLS.10.4v0.3", - "Requirement": "Agencies SHALL NOT allow users to access unconfigured third-party apps.", - "Result": "No events found", - "Criticality": "Shall", - "Details": " No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended." - } - ] - }, - { - "GroupName": "Authorized Google Marketplace Apps", - "GroupNumber": "11", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#11-Authorized-Google-Marketplace-Apps", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.11.1v0.3", - "Requirement": "Only approved Google Workspace Marketplace applications SHALL be allowed for installation.", - "Result": "Fail", - "Criticality": "Shall", - "Details": "The following OUs are non-compliant:
    • Org Name: Users can install and run any internal app, even if it's not allowlisted
    " - }, - { - "Control ID": "GWS.COMMONCONTROLS.11.2v0.3", - "Requirement": "Access to Google Workspace applications by less secure apps that do not meet security standards for authentication SHALL be prevented.", - "Result": "No events found", - "Criticality": "Should", - "Details": " No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is compliant; manual check recommended." - } - ] - }, - { - "GroupName": "Google Takeout Services for Users", - "GroupNumber": "12", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#12-Google-Takeout-Services-for-Users", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.12.1v0.3", - "Requirement": "Google Takeout services SHALL be disabled.", - "Result": "No events found", - "Criticality": "Shall", - "Details": " No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended." - } - ] - }, - { - "GroupName": "System-defined Rules", - "GroupNumber": "13", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#13-System-defined-Rules", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Requirement": "Required system-defined alerting rules, as listed in the Policy group description, SHALL be enabled with alerts.", - "Result": "N/A", - "Criticality": "Shall/Not-Implemented", - "Details": "Results for GWS.COMMONCONTROLS.13 are listed in the Rules Report." - } - ] - }, - { - "GroupName": "Google Workspace Logs", - "GroupNumber": "14", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#14-Google-Workspace-Logs", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.14.1v0.3", - "Requirement": "The following critical logs SHALL be sent to the agency's centralized SIEM.", - "Result": "N/A", - "Criticality": "Shall/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - }, - { - "Control ID": "GWS.COMMONCONTROLS.14.2v0.3", - "Requirement": "Audit logs SHALL be maintained for at least 6 months in active storage and an additional 18 months in cold storage, as dictated by OMB M-21-31.", - "Result": "N/A", - "Criticality": "Shall/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - } - ] - }, - { - "GroupName": "Data Regions and Storage", - "GroupNumber": "15", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#15-Data-Regions-and-Storage", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.15.1v0.3", - "Requirement": "The data storage region SHALL be set to be the United States for all users in the agency's GWS environment.", - "Result": "N/A", - "Criticality": "Shall/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - }, - { - "Control ID": "GWS.COMMONCONTROLS.15.2v0.3", - "Requirement": "The supplemental data storage region SHALL NOT be set to 'Russian Federation'.", - "Result": "No events found", - "Criticality": "Shall", - "Details": " No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is compliant; manual check recommended." - } - ] - }, - { - "GroupName": "Additional Google Services", - "GroupNumber": "16", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#16-Additional-Google-Services", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.16.1v0.3", - "Requirement": "Service status for Google services that do not have an individual control SHOULD be set to OFF for everyone.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Multi-Party Approval", - "GroupNumber": "17", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#17-Multi-Party-Approval", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.17.1v0.3", - "Requirement": "Require multi party approval for sensitive admin actions SHALL be enabled.", - "Result": "Fail", - "Criticality": "Shall", - "Details": "The following OUs are non-compliant:
    • Org Name: Require multi party approval for sensitive admin actions is DISABLED
    " - } - ] - } - ], - "drive": [ - { - "GroupName": "Sharing Outside the Organization", - "GroupNumber": "1", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/drive.md#1-Sharing-Outside-the-Organization", - "Controls": [ - { - "Control ID": "GWS.DRIVEDOCS.1.1v0.3", - "Requirement": "Agencies SHOULD disable sharing outside of the organization's domain.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.DRIVEDOCS.1.2v0.3", - "Requirement": "Agencies SHOULD disable users' receiving files from outside of the organization's domain.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.DRIVEDOCS.1.3v0.3", - "Requirement": "Warnings SHALL be enabled when a user is attempting to share something outside the domain.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.DRIVEDOCS.1.4v0.3", - "Requirement": "If sharing outside of the organization, then agencies SHALL disable sharing of files with individuals who are not using a Google account.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.DRIVEDOCS.1.5v0.3", - "Requirement": "Agencies SHALL disable making files and published web content visible to anyone with the link.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.DRIVEDOCS.1.6v0.3", - "Requirement": "Agencies SHALL set access checking to recipients only.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.DRIVEDOCS.1.7v0.3", - "Requirement": "Agencies SHALL NOT allow any users to distribute content from an organization-owned shared drive to shared drives owned by another organization.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.DRIVEDOCS.1.8v0.3", - "Requirement": "Agencies SHALL set newly created items to have Private to the Owner as the default level of access.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Shared Drive Creation", - "GroupNumber": "2", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/drive.md#2-Shared-Drive-Creation", - "Controls": [ - { - "Control ID": "GWS.DRIVEDOCS.2.1v0.3", - "Requirement": "Agencies SHOULD NOT allow members with manager access to override shared drive creation settings.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.DRIVEDOCS.2.2v0.3", - "Requirement": "Agencies SHOULD NOT allow users outside of their organization to access files in shared drives.", - "Result": "Warning", - "Criticality": "Should", - "Details": "The following OUs are non-compliant:
    • Org Name: Users outside the organization can access files in shared drives
    " - }, - { - "Control ID": "GWS.DRIVEDOCS.2.3v0.3", - "Requirement": "Agencies SHALL allow users who are not shared drive members to be added to files.", - "Result": "Fail", - "Criticality": "Shall", - "Details": "The following OUs are non-compliant:
    • Org Name: People who aren't shared drive members can be added to files
    " - }, - { - "Control ID": "GWS.DRIVEDOCS.2.4v0.3", - "Requirement": "Agencies SHALL NOT allow viewers and commenters to download, print, and copy files.", - "Result": "Fail", - "Criticality": "Shall", - "Details": "The following OUs are non-compliant:
    • Org Name: Viewers and commenters are allowed to download, print, and copy files
    " - } - ] - }, - { - "GroupName": "Security Updates for Files", - "GroupNumber": "3", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/drive.md#3-Security-Updates-for-Files", - "Controls": [ - { - "Control ID": "GWS.DRIVEDOCS.3.1v0.3", - "Requirement": "Agencies SHALL enable the security update for Drive files.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Drive SDK", - "GroupNumber": "4", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/drive.md#4-Drive-SDK", - "Controls": [ - { - "Control ID": "GWS.DRIVEDOCS.4.1v0.3", - "Requirement": "Agencies SHOULD disable Drive SDK access.", - "Result": "Warning", - "Criticality": "Should", - "Details": "The following OUs are non-compliant:
    • Mrs. Victoria Phillips PhD: Drive SDK is enabled
    " - } - ] - }, - { - "GroupName": "User Installation of Drive and Docs Add-Ons", - "GroupNumber": "5", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/drive.md#5-User-Installation-of-Drive-and-Docs-Add-Ons", - "Controls": [ - { - "Control ID": "GWS.DRIVEDOCS.5.1v0.3", - "Requirement": "Agencies SHALL disable Add-Ons.", - "Result": "Fail", - "Criticality": "Shall", - "Details": "The following OUs are non-compliant:
    • Org Name: Users can install Google Docs add-ons from add-ons store.
    " - } - ] - }, - { - "GroupName": "Drive for Desktop", - "GroupNumber": "6", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/drive.md#6-Drive-for-Desktop", - "Controls": [ - { - "Control ID": "GWS.DRIVEDOCS.6.1v0.3", - "Requirement": "Google Drive for Desktop SHOULD be enabled only for authorized devices.", - "Result": "Warning", - "Criticality": "Should", - "Details": "The following groups are non-compliant:
    • ewalker@example.org: Drive for Desktop is enabled and can be used on any device.
    • ewalker@example.org: Drive for Desktop is enabled and can be used on any device.
    • ewalker@example.org: Drive for Desktop is enabled and can be used on any device.
    " - } - ] - }, - { - "GroupName": "DLP rules", - "GroupNumber": "7", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/drive.md#7-DLP-rules", - "Controls": [ - { - "Control ID": "GWS.DRIVEDOCS.7.1v0.3", - "Requirement": "Agencies SHOULD configure DLP rules to block or warn on sharing files with sensitive data.", - "Result": "Omitted", - "Criticality": "Should/Not-Implemented", - "Details": "Test omitted by user. The DLP capability required by the baselines is implemented by third party product, [x], which ScubaGoggles does not have the ability to check." - } - ] - } - ], - "gmail": [ - { - "GroupName": "Mail Delegation", - "GroupNumber": "1", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#1-Mail-Delegation", - "Controls": [ - { - "Control ID": "GWS.GMAIL.1.1v0.3", - "Requirement": "Mail Delegation SHOULD be disabled.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "DomainKeys Identified Mail", - "GroupNumber": "2", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#2-DomainKeys-Identified-Mail", - "Controls": [ - { - "Control ID": "GWS.GMAIL.2.1v0.3", - "Requirement": "DKIM SHOULD be enabled for all domains.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met." - } - ] - }, - { - "GroupName": "Sender Policy Framework", - "GroupNumber": "3", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#3-Sender-Policy-Framework", - "Controls": [ - { - "Control ID": "GWS.GMAIL.3.1v0.3", - "Requirement": "An SPF policy SHALL be published for each domain that fails all non-approved senders.", - "Result": "Fail", - "Criticality": "Shall", - "Details": "1 of 2 agency domain(s) found in violation: example.org." - } - ] - }, - { - "GroupName": "Domain-based Message Authentication, Reporting, and Conformance", - "GroupNumber": "4", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#4-Domain-based-Message-Authentication,-Reporting,-and-Conformance", - "Controls": [ - { - "Control ID": "GWS.GMAIL.4.1v0.3", - "Requirement": "A DMARC policy SHALL be published for every second-level domain.", - "Result": "Fail", - "Criticality": "Shall", - "Details": "1 of 2 agency domain(s) found in violation: example.org." - }, - { - "Control ID": "GWS.GMAIL.4.2v0.3", - "Requirement": "The DMARC message rejection option SHALL be p=reject.", - "Result": "Fail", - "Criticality": "Shall", - "Details": "1 of 2 agency domain(s) found in violation: example.org." - }, - { - "Control ID": "GWS.GMAIL.4.3v0.3", - "Requirement": "The DMARC point of contact for aggregate reports SHALL include `reports@dmarc.cyber.dhs.gov`.", - "Result": "Fail", - "Criticality": "Shall", - "Details": "1 of 2 agency domain(s) found in violation: example.org." - }, - { - "Control ID": "GWS.GMAIL.4.4v0.3", - "Requirement": "An agency point of contact SHOULD be included for aggregate and failure reports.", - "Result": "Warning", - "Criticality": "Should", - "Details": "1 of 2 agency domain(s) found in violation: example.org." - } - ] - }, - { - "GroupName": "Attachment Protections", - "GroupNumber": "5", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#5-Attachment-Protections", - "Controls": [ - { - "Control ID": "GWS.GMAIL.5.1v0.3", - "Requirement": "Protect against encrypted attachments from untrusted senders SHALL be enabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.5.2v0.3", - "Requirement": "Protect against attachments with scripts from untrusted senders SHALL be enabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.5.3v0.3", - "Requirement": "Protect against anomalous attachment types in emails SHALL be enabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.5.4v0.3", - "Requirement": "Google SHOULD be allowed to automatically apply future recommended settings for attachments.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.5.5v0.3", - "Requirement": "Emails flagged by the above attachment protection controls SHALL NOT be kept in inbox.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.5.6v0.3", - "Requirement": "Any third-party or outside application selected for attachment protection SHOULD offer services comparable to those offered by Google Workspace.", - "Result": "N/A", - "Criticality": "Should/Not-Implemented", - "Details": "Currently not able to be tested automatically; please check manually." - } - ] - }, - { - "GroupName": "Links and External Images Protection", - "GroupNumber": "6", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#6-Links-and-External-Images-Protection", - "Controls": [ - { - "Control ID": "GWS.GMAIL.6.1v0.3", - "Requirement": "Identify links behind shortened URLs SHALL be enabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.6.2v0.3", - "Requirement": "Scan linked images SHALL be enabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.6.3v0.3", - "Requirement": "Show warning prompt for any click on links to untrusted domains SHALL be enabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.6.4v0.3", - "Requirement": "Google SHALL be allowed to automatically apply future recommended settings for links and external images.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.6.5v0.3", - "Requirement": "Any third-party or outside application selected for links and external images protection SHOULD offer services comparable to those offered by Google Workspace.", - "Result": "N/A", - "Criticality": "Should/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - } - ] - }, - { - "GroupName": "Spoofing and Authentication Protection", - "GroupNumber": "7", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#7-Spoofing-and-Authentication-Protection", - "Controls": [ - { - "Control ID": "GWS.GMAIL.7.1v0.3", - "Requirement": "Protect against domain spoofing based on similar domain names SHALL be enabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.7.2v0.3", - "Requirement": "Protect against spoofing of employee names SHALL be enabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.7.3v0.3", - "Requirement": "Protect against inbound emails spoofing your domain SHALL be enabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.7.4v0.3", - "Requirement": "Protect against any unauthenticated emails SHALL be enabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.7.5v0.3", - "Requirement": "Protect your Groups from inbound emails spoofing your domain SHALL be enabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.7.6v0.3", - "Requirement": "Emails flagged by the above spoofing and authentication controls SHALL NOT be kept in inbox.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.7.7v0.3", - "Requirement": "Google SHALL be allowed to automatically apply future recommended settings for spoofing and authentication.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.7.8v0.3", - "Requirement": "Any third-party or outside application selected for spoofing and authentication protection SHOULD offer services comparable to those offered by Google Workspace.", - "Result": "N/A", - "Criticality": "Should/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - } - ] - }, - { - "GroupName": "User Email Uploads", - "GroupNumber": "8", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#8-User-Email-Uploads", - "Controls": [ - { - "Control ID": "GWS.GMAIL.8.1v0.3", - "Requirement": "User email uploads SHALL be disabled to protect against unauthorized files being introduced into the secured environment.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "POP and IMAP Access for Users", - "GroupNumber": "9", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#9-POP-and-IMAP-Access-for-Users", - "Controls": [ - { - "Control ID": "GWS.GMAIL.9.1v0.3", - "Requirement": "POP and IMAP access SHALL be disabled to protect sensitive agency or organization emails from being accessed through legacy applications or other third-party mail clients.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Google Workspace Sync", - "GroupNumber": "10", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#10-Google-Workspace-Sync", - "Controls": [ - { - "Control ID": "GWS.GMAIL.10.1v0.3", - "Requirement": "Google Workspace Sync SHOULD be disabled.", - "Result": "Fail", - "Criticality": "Shall", - "Details": "The following OUs are non-compliant:
    • Bradley Martin: Automatically enable outlook sync is set to enabled
    " - }, - { - "Control ID": "GWS.GMAIL.10.2v0.3", - "Requirement": "Google Workspace Sync MAY be enabled on a per-user basis as needed.", - "Result": "N/A", - "Criticality": "May/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - } - ] - }, - { - "GroupName": "Automatic Forwarding", - "GroupNumber": "11", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#11-Automatic-Forwarding", - "Controls": [ - { - "Control ID": "GWS.GMAIL.11.1v0.3", - "Requirement": "Automatic forwarding SHOULD be disabled, especially to external domains.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Per-user Outbound Gateways", - "GroupNumber": "12", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#12-Per-user-Outbound-Gateways", - "Controls": [ - { - "Control ID": "GWS.GMAIL.12.1v0.3", - "Requirement": "Using a per-user outbound gateway that is a mail server other than the Google Workspace mail servers SHALL be disabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Unintended External Reply Warning", - "GroupNumber": "13", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#13-Unintended-External-Reply-Warning", - "Controls": [ - { - "Control ID": "GWS.GMAIL.13.1v0.3", - "Requirement": "Unintended external reply warnings SHALL be enabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Email Allowlist", - "GroupNumber": "14", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#14-Email-Allowlist", - "Controls": [ - { - "Control ID": "GWS.GMAIL.14.1v0.3", - "Requirement": "An email allowlist SHOULD not be implemented.", - "Result": "Warning", - "Criticality": "Should", - "Details": "Email allowlists are enabled in Org Name." - } - ] - }, - { - "GroupName": "Enhanced Pre-Delivery Message Scanning", - "GroupNumber": "15", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#15-Enhanced-Pre-Delivery-Message-Scanning", - "Controls": [ - { - "Control ID": "GWS.GMAIL.15.1v0.3", - "Requirement": "Enhanced pre-delivery message scanning SHALL be enabled to prevent phishing.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.15.2v0.3", - "Requirement": "Any third-party or outside application selected for enhanced pre-delivery message scanning SHOULD offer services comparable to those offered by Google Workspace.", - "Result": "N/A", - "Criticality": "Should/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - } - ] - }, - { - "GroupName": "Security Sandbox", - "GroupNumber": "16", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#16-Security-Sandbox", - "Controls": [ - { - "Control ID": "GWS.GMAIL.16.1v0.3", - "Requirement": "Security sandbox SHOULD be enabled to provide additional protections for their email messages.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - }, - { - "Control ID": "GWS.GMAIL.16.2v0.3", - "Requirement": "Any third-party or outside application selected for security sandbox SHOULD offer services comparable to those offered by Google Workspace.", - "Result": "N/A", - "Criticality": "Should/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - } - ] - }, - { - "GroupName": "Comprehensive Mail Storage", - "GroupNumber": "17", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#17-Comprehensive-Mail-Storage", - "Controls": [ - { - "Control ID": "GWS.GMAIL.17.1v0.3", - "Requirement": "Comprehensive mail storage SHOULD be enabled to allow tracking of information across applications.", - "Result": "N/A", - "Criticality": "Should/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - } - ] - }, - { - "GroupName": "Content Compliance Filtering", - "GroupNumber": "18", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#18-Content-Compliance-Filtering", - "Controls": [ - { - "Control ID": "GWS.GMAIL.18.1v0.3", - "Requirement": "Content filtering SHOULD be enabled within Gmail messages.", - "Result": "N/A", - "Criticality": "Should/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - }, - { - "Control ID": "GWS.GMAIL.18.2v0.3", - "Requirement": "Any third-party or outside application selected for advanced email content filtering SHOULD offer services comparable to those offered by Google Workspace.", - "Result": "N/A", - "Criticality": "Should/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - }, - { - "Control ID": "GWS.GMAIL.18.3v0.3", - "Requirement": "Gmail or third-party applications SHALL be configured to protect PII and sensitive information as defined by the agency. At a minimum, credit card numbers, taxpayer Identification Numbers (TIN), and Social Security Numbers (SSN) SHALL be blocked.", - "Result": "N/A", - "Criticality": "Shall/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - } - ] - }, - { - "GroupName": "Spam Filtering", - "GroupNumber": "19", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#19-Spam-Filtering", - "Controls": [ - { - "Control ID": "GWS.GMAIL.19.1v0.3", - "Requirement": "Domains SHALL NOT be added to lists that bypass spam filters.", - "Result": "N/A", - "Criticality": "Shall/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - }, - { - "Control ID": "GWS.GMAIL.19.2v0.3", - "Requirement": "Domains SHALL NOT be added to lists that bypass spam filters and hide warnings.", - "Result": "N/A", - "Criticality": "Shall/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - }, - { - "Control ID": "GWS.GMAIL.19.3v0.3", - "Requirement": "Bypass spam filters and hide warnings for all messages from internal and external senders SHALL NOT be enabled.", - "Result": "N/A", - "Criticality": "Shall/Not-Implemented", - "Details": "Currently not able to be tested automatically; please manually check." - } - ] - } - ], - "groups": [ - { - "GroupName": "External Group Access", - "GroupNumber": "1", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/groups.md#1-External-Group-Access", - "Controls": [ - { - "Control ID": "GWS.GROUPS.1.1v0.3", - "Requirement": "Group access from outside the organization SHALL be disabled unless explicitly granted by the group owner.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Adding External Members", - "GroupNumber": "2", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/groups.md#2-Adding-External-Members", - "Controls": [ - { - "Control ID": "GWS.GROUPS.2.1v0.3", - "Requirement": "Group owners' ability to add external members to groups SHOULD be disabled unless necessary for agency mission fulfillment.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Allowing Posting by External Members", - "GroupNumber": "3", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/groups.md#3-Allowing-Posting-by-External-Members", - "Controls": [ - { - "Control ID": "GWS.GROUPS.3.1v0.3", - "Requirement": "Group owners' ability to allow posting to a group by an external, non-group member SHOULD be disabled unless necessary for agency mission fulfillment.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Group Creation", - "GroupNumber": "4", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/groups.md#4-Group-Creation", - "Controls": [ - { - "Control ID": "GWS.GROUPS.4.1v0.3", - "Requirement": "Group creation SHOULD be restricted to admins within the organization unless necessary for agency mission fulfillment.", - "Result": "Warning", - "Criticality": "Should", - "Details": "The following OUs are non-compliant:
    • Org Name: Anyone on the internet can create groups
    " - } - ] - }, - { - "GroupName": "Default Permissions for Viewing Conversations", - "GroupNumber": "5", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/groups.md#5-Default-Permissions-for-Viewing-Conversations", - "Controls": [ - { - "Control ID": "GWS.GROUPS.5.1v0.3", - "Requirement": "The default permission to view conversations SHOULD be set to All Group Members.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Ability to Hide Groups from the Directory", - "GroupNumber": "6", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/groups.md#6-Ability-to-Hide-Groups-from-the-Directory", - "Controls": [ - { - "Control ID": "GWS.GROUPS.6.1v0.3", - "Requirement": "The Ability for Groups to be Hidden from the Directory SHALL be disabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "New Groups", - "GroupNumber": "7", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/groups.md#7-New-Groups", - "Controls": [ - { - "Control ID": "GWS.GROUPS.7.1v0.3", - "Requirement": "New Groups SHOULD be created with an Access type of Restricted unless necessary for agency mission fulfillment.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all groups." - } - ] - } - ], - "meet": [ - { - "GroupName": "Meeting Access", - "GroupNumber": "1", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/meet.md#1-Meeting-Access", - "Controls": [ - { - "Control ID": "GWS.MEET.1.1v0.3", - "Requirement": "Meeting access SHOULD be restricted to users signed in with a Google Account or Dialing in using a phone.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Internal Access to External Meetings", - "GroupNumber": "2", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/meet.md#2-Internal-Access-to-External-Meetings", - "Controls": [ - { - "Control ID": "GWS.MEET.2.1v0.3", - "Requirement": "Meeting access SHALL be disabled for meetings created by users who are not members of any Google Workspace tenant or organization.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Host Management Meeting Features", - "GroupNumber": "3", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/meet.md#3-Host-Management-Meeting-Features", - "Controls": [ - { - "Control ID": "GWS.MEET.3.1v0.3", - "Requirement": "Host Management meeting features SHALL be enabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "External Participants", - "GroupNumber": "4", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/meet.md#4-External-Participants", - "Controls": [ - { - "Control ID": "GWS.MEET.4.1v0.3", - "Requirement": "Warn for external participants SHALL be enabled.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - }, - { - "GroupName": "Incoming Calls", - "GroupNumber": "5", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/meet.md#5-Incoming-Calls", - "Controls": [ - { - "Control ID": "GWS.MEET.5.1v0.3", - "Requirement": "Incoming calls SHALL be restricted to contacts and other users in the organization.", - "Result": "Pass", - "Criticality": "Shall", - "Details": "Requirement met in all OUs and groups." - } - ] - } - ], - "rules": [ - { - "GroupName": "System-defined Rules", - "GroupNumber": "13", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#13-System-defined-Rules", - "Controls": [ - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Domain data export initiated", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "A Super Administrator for your Google account has started exporting data from your domain." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "[Beta] Client-side encryption service unavailable", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "A problem has been detected with your client-side encryption service indicating an outage or misconfigured setting." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "User-reported phishing", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "A sender has sent messages to your domain that users have classified as phishings." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Suspicious message reported", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "A sender has sent messages to your domain that users have classified as spam." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Suspended user made active", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "A suspended user is made active." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "User suspended (by admin)", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "An admin has suspended the account." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Spike in user-reported spam", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "An unusually high volume of messages from a sender that users have marked as spam." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Google Voice configuration problem", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Auto attendants and ring groups with invalid references may hang up at unexpected times." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Directory sync cancelled due to safeguard threshold exceeded", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Directory sync has been automatically cancelled and disabled as the directory sync service detected a possibility to exceed deprovisioning safeguard threshold." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Account suspension warning", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Google Workspace accounts engaging in suspicious activity may have their account suspended. Google Workspace accounts must comply with the Google Workspace Terms of Service, Google Workspace for Education Terms of Service, Google Cloud Platform Terms of Service or Cloud Identity Terms of Service." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Leaked password", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Google detected compromised credentials requiring a reset of the user's password." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "User suspended (Google identity alert)", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Google detected suspicious activity and suspended the account." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "User suspended for spamming", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Google detected suspicious activity such as spamming and suspended the account." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "User suspended for spamming through relay", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Google detected suspicious activity such as spamming through a SMTP relay service and suspended the account." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Suspicious programmatic login", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Google detected suspicious login attempts from potential applications or computer programs." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "User suspended due to suspicious activity", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Google suspended a user's account due to a potential compromise detected." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Gmail potential employee spoofing", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Incoming messages where a sender's name is in your Google Workspace directory, but the mail is not from your company's domains or domain aliases." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Phishing in inboxes due to bad whitelist", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Messages classified as spam by Gmail filters delivered to user inboxes due to whitelisting settings in the Google Admin console that override the spam filters." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Malware message detected post-delivery", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Messages detected as malware post-delivery that are automatically reclassified." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Phishing message detected post-delivery", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Messages detected as phishing post-delivery that are automatically reclassified." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "TLS failure", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Messages requiring Transport Layer Security (TLS) can't be delivered." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Device compromised", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Provides details about devices in your domain that have entered a compromised state." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Google Operations", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Provides details about security and privacy issues that affect your Google Workspace services." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Suspicious device activity", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Provides details if device properties such as device ID, serial number, type of device, or device manufacturer are updated." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Government-backed attacks", - "Result": "No events found", - "Criticality": "Shall", - "Rule Description": "Warnings about potential government-backed attacks." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Rate limited recipient", - "Result": "No events found", - "Criticality": "Should", - "Rule Description": "A high rate of incoming email indicating a potential malicious attack or misconfigured setting." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "User deleted", - "Result": "No events found", - "Criticality": "Should", - "Rule Description": "A user has been deleted from the domain." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "App Maker Cloud SQL setup", - "Result": "No events found", - "Criticality": "Should", - "Rule Description": "A user has requested a Google Cloud SQL instance to be set up for use with App Maker." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Apps outage alert", - "Result": "No events found", - "Criticality": "Should", - "Rule Description": "Alerts about new, updated, or resolved outage on the Google Workspace Status Dashboard." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Smarthost failure", - "Result": "No events found", - "Criticality": "Should", - "Rule Description": "Alerts if a large number of messages can't be delivered to one of your smart host servers." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Calendar settings changed", - "Result": "No events found", - "Criticality": "Should", - "Rule Description": "An admin has changed Google Workspace Calendar settings." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Drive settings changed", - "Result": "No events found", - "Criticality": "Should", - "Rule Description": "An admin has changed Google Workspace Drive settings." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Email settings changed", - "Result": "No events found", - "Criticality": "Should", - "Rule Description": "An admin has changed Google Workspace Gmail settings." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Mobile settings changed", - "Result": "No events found", - "Criticality": "Should", - "Rule Description": "An admin has changed mobile management settings." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Exchange journaling failure", - "Result": "No events found", - "Criticality": "Should", - "Rule Description": "Failures with Exchange journaling that ensures email traffic generated by Microsoft\u00ae Exchange server users is properly archived in Google Vault." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "New user added", - "Result": "Pass", - "Criticality": "Should", - "Rule Description": "A new user has been added to the domain." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "User granted Admin privilege", - "Result": "Pass", - "Criticality": "Shall", - "Rule Description": "A user is granted an admin privilege." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "User's Admin privilege revoked", - "Result": "Pass", - "Criticality": "Shall", - "Rule Description": "A user is revoked of their admin privilege." - }, - { - "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", - "Rule Name": "Suspicious login", - "Result": "Fail", - "Criticality": "Shall", - "Rule Description": "Google detected a sign-in attempt that doesn't match a user's normal behavior, such as a sign-in from an unusual location." - } - ] - } - ], - "sites": [ - { - "GroupName": "Sites Service Status", - "GroupNumber": "1", - "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/sites.md#1-Sites-Service-Status", - "Controls": [ - { - "Control ID": "GWS.SITES.1.1v0.3", - "Requirement": "Sites Service SHOULD be disabled for all users.", - "Result": "Pass", - "Criticality": "Should", - "Details": "Requirement met in all OUs and groups." - } - ] - } - ] - }, - "Raw": { - "organizational_units": { - "kind": "admin#directory#orgUnits", - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Sj_HAvudKHEkCVM_Sn1krnddo1Y\"", - "organizationUnits": [ - { - "kind": "admin#directory#orgUnit", - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CdR1hTfWzqxA8DDaOUg11hbVivo\"", - "name": "Catherine Lara", - "description": "test OU for super admins", - "orgUnitPath": "/Catherine Lara", - "orgUnitId": "id:0a0a0a0a0a0a0a0", - "parentOrgUnitPath": "/", - "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" - }, - { - "kind": "admin#directory#orgUnit", - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rPn4yE7pK_muoYjSNhrvr6_yDqo\"", - "name": "Jorge Williams", - "description": "", - "orgUnitPath": "/Jorge Williams", - "orgUnitId": "id:0a0a0a0a0a0a0a0", - "parentOrgUnitPath": "/", - "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" - }, - { - "kind": "admin#directory#orgUnit", - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/73BuQlA1JPEBmzb0TAY7r5yFSvM\"", - "name": "Anthony Jackson", - "description": "Made for Rego testing", - "orgUnitPath": "/Anthony Jackson", - "orgUnitId": "id:0a0a0a0a0a0a0a0", - "parentOrgUnitPath": "/", - "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" - }, - { - "kind": "admin#directory#orgUnit", - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xZPiY5ANaUSTy1NiOmxx5l4pPVQ\"", - "name": "Luke Martin", - "description": "Luke Martin", - "orgUnitPath": "/Luke Martin", - "orgUnitId": "id:0a0a0a0a0a0a0a0", - "parentOrgUnitPath": "/", - "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" - }, - { - "kind": "admin#directory#orgUnit", - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jjnzho2daqNOhRQzkLQjaqEbIlQ\"", - "name": "Nicholas Rodriguez", - "description": "", - "orgUnitPath": "/Nicholas Rodriguez", - "orgUnitId": "id:0a0a0a0a0a0a0a0", - "parentOrgUnitPath": "/", - "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" - }, - { - "kind": "admin#directory#orgUnit", - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0iSPmMd8Umpd7-_APEgVeBB9tSA\"", - "name": "Alexandra Maxwell", - "description": "For AI auto-classification testing", - "orgUnitPath": "/Alexandra Maxwell", - "orgUnitId": "id:0a0a0a0a0a0a0a0", - "parentOrgUnitPath": "/", - "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" - }, - { - "kind": "admin#directory#orgUnit", - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tWNXvp6OIwsyhFqlp48uLmfcAy8\"", - "name": "Glenn Mccoy", - "description": "Users in this group have access to sites", - "orgUnitPath": "/Glenn Mccoy", - "orgUnitId": "id:0a0a0a0a0a0a0a0", - "parentOrgUnitPath": "/", - "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" - }, - { - "kind": "admin#directory#orgUnit", - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-xaSPPNVsEV_f4ZopOLvPlAMcAY\"", - "name": "Angelica Martinez", - "description": "Kenneth Hernandez", - "orgUnitPath": "/Angelica Martinez", - "orgUnitId": "id:0a0a0a0a0a0a0a0", - "parentOrgUnitPath": "/", - "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" - }, - { - "kind": "admin#directory#orgUnit", - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xYv0b7tChPSeZLwr06IoCgqCmJM\"", - "name": "Cameron Dunn", - "description": "", - "orgUnitPath": "/Cameron Dunn", - "orgUnitId": "id:0a0a0a0a0a0a0a0", - "parentOrgUnitPath": "/", - "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" - }, - { - "kind": "admin#directory#orgUnit", - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/X1U4mk2O0HZtNkP6IdLl1K7PVNk\"", - "name": "Anthony Jackson_Brian Parrish", - "description": "", - "orgUnitPath": "/Anthony Jackson_Brian Parrish", - "orgUnitId": "id:0a0a0a0a0a0a0a0", - "parentOrgUnitPath": "/", - "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" - }, - { - "kind": "admin#directory#orgUnit", - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/F464OiguDbtVqB5S3P2I45wEpiI\"", - "name": "Test Target Audience", - "description": "", - "orgUnitPath": "/Test Target Audience", - "orgUnitId": "id:0a0a0a0a0a0a0a0", - "parentOrgUnitPath": "/", - "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" - }, - { - "kind": "admin#directory#orgUnit", - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3eMmDNWrjQyXGjoeFyKNxexiNw0\"", - "name": "Sites OU", - "description": "", - "orgUnitPath": "/Sites OU", - "orgUnitId": "id:0a0a0a0a0a0a0a0", - "parentOrgUnitPath": "/", - "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" - } - ] - }, - "organizational_unit_names": [ - "", - "Dawn Green", - "Olivia Anderson", - "Molly Burgess", - "Org Name", - "Sites OU", - "Amber Ruiz", - "Ryan Young", - "Test Target Audience", - "Rebecca Schultz", - "Kelly Allen_Tiffany English", - "Michele Owens", - "Kelly Allen", - "Isaiah Walsh" - ], - "calendar_logs": { - "items": [ - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-17T13:27:28.705Z", - "uniqueQualifier": "-8477115180212894288", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zCHnkwno4jJaD-6bPKqJlkwBcAs\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN_FOR_SECONDARY_CALENDAR" - }, - { - "name": "ORG_UNIT_NAME", - "value": "" - }, - { - "name": "OLD_VALUE", - "value": "SHOW_ONLY_FREE_BUSY_INFORMATION" - }, - { - "name": "NEW_VALUE", - "value": "READ_WRITE_ACCESS" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:44:10.329Z", - "uniqueQualifier": "-8486742869988451916", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xd_fwYYcK5wIhYh2CS5BteCi4Dc\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EWS_INTEROP" - }, - { - "name": "ORG_UNIT_NAME", - "value": "" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:42:01.426Z", - "uniqueQualifier": "-6408041277190046787", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ka1o1q1rVakUtANGB7lIcJGZJyU\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EWS_INTEROP" - }, - { - "name": "ORG_UNIT_NAME", - "value": "" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:41:05.585Z", - "uniqueQualifier": "-8366999120854461687", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/c88KyiFQ1N6tLXrtltcevpUmkXA\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EWS_INTEROP" - }, - { - "name": "ORG_UNIT_NAME", - "value": "" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:38:07.573Z", - "uniqueQualifier": "-7019067880239209779", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/px_Hc9f28KakY4WRWdH2ahGWNs0\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EXTERNAL_GUEST_PROMPT" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "GROUP_EMAIL", - "value": "christopherjenkins@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:37:39.208Z", - "uniqueQualifier": "-7935118052466259343", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/LCp1DOOhVQbtxN1rVkDK85Ci-nM\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EXTERNAL_GUEST_PROMPT" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "GROUP_EMAIL", - "value": "christopherjenkins@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:36:13.350Z", - "uniqueQualifier": "-7876506947637356115", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9HxQLyUDwbTi1H0wCgXtDnts1QE\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EXTERNAL_GUEST_PROMPT" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kevin Ortiz" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:35:45.528Z", - "uniqueQualifier": "-6332458829736664046", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dcx-N6jsDvP-5zTH21fByTOryQU\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EXTERNAL_GUEST_PROMPT" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kevin Ortiz" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:35:15.028Z", - "uniqueQualifier": "-6551676897309297499", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hCY4Gafs8QgIeqUZPTRwBYcCmCQ\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EXTERNAL_GUEST_PROMPT" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:34:40.132Z", - "uniqueQualifier": "-6647051825042666966", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ZxrwF1dFW0fPlsjP1ovR9bF9JzY\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EXTERNAL_GUEST_PROMPT" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:33:52.022Z", - "uniqueQualifier": "-5113128350909749994", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bFVN1s3MrNpDQi5jEPkp9C_4zak\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN_FOR_SECONDARY_CALENDAR" - }, - { - "name": "ORG_UNIT_NAME", - "value": "" - }, - { - "name": "OLD_VALUE", - "value": "MANAGE_ACCESS" - }, - { - "name": "NEW_VALUE", - "value": "SHOW_ONLY_FREE_BUSY_INFORMATION" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:33:15.607Z", - "uniqueQualifier": "-4965016007964467148", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OJ2Xs5vYD2zG_4UpIVOa7RRWma8\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN_FOR_SECONDARY_CALENDAR" - }, - { - "name": "ORG_UNIT_NAME", - "value": "" - }, - { - "name": "OLD_VALUE", - "value": "SHOW_ONLY_FREE_BUSY_INFORMATION" - }, - { - "name": "NEW_VALUE", - "value": "MANAGE_ACCESS" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:32:34.294Z", - "uniqueQualifier": "-4708609750457909254", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kj9RetqJKyxRlW79o_99L_DfnGQ\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "READ_ONLY_ACCESS" - }, - { - "name": "NEW_VALUE", - "value": "SHOW_ONLY_FREE_BUSY_INFORMATION" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:32:18.473Z", - "uniqueQualifier": "-7085844140542796383", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YPXfgY-S468WhnT1k1OheFL1OV8\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "MANAGE_ACCESS" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "GROUP_EMAIL", - "value": "christopherjenkins@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:31:49.411Z", - "uniqueQualifier": "-8801771209770878875", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zsMRH_gAv9_UoneBgcgccXMeG9A\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "MANAGE_ACCESS" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "GROUP_EMAIL", - "value": "christopherjenkins@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:30:54.382Z", - "uniqueQualifier": "-8099679689652983531", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JP3_l3iuUBs0BggliFmwk-ha6mE\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kevin Ortiz" - }, - { - "name": "OLD_VALUE", - "value": "READ_WRITE_ACCESS" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:30:20.533Z", - "uniqueQualifier": "-8158733140943555806", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/fRMPD-i79Fq8S4YJatqDEJVlk0A\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kevin Ortiz" - }, - { - "name": "OLD_VALUE", - "value": "MANAGE_ACCESS" - }, - { - "name": "NEW_VALUE", - "value": "READ_WRITE_ACCESS" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:29:25.508Z", - "uniqueQualifier": "-6950796392888715395", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QxVBSyiCvoriRZL1iAsaHKVPJD4\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "CALENDAR_SETTINGS", - "name": "CHANGE_CALENDAR_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHOW_ONLY_FREE_BUSY_INFORMATION" - }, - { - "name": "NEW_VALUE", - "value": "READ_ONLY_ACCESS" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:46:07.986Z", - "uniqueQualifier": "-5174706392570142599", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Sm3Z16iwvOGo36Y_pfzFK9eRdUo\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Calendar" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kevin Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "CalendarAppointmentSlotAdminSettingsProto payments_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:45:39.226Z", - "uniqueQualifier": "-5522405652697133681", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/SgYrmfwIy47tTbjx_cQ75Nw2JJ4\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Calendar" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "CalendarAppointmentSlotAdminSettingsProto payments_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:45:08.275Z", - "uniqueQualifier": "-7385793982146338594", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/44AcYXPlp13PG-9tMjm3uEKCmnI\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Calendar" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "CalendarAppointmentSlotAdminSettingsProto payments_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:55:08.063Z", - "uniqueQualifier": "-5890825954996077196", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ZqQ7H_KbwkWxQaDhDF3CbC8BY8w\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Calendar" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kevin Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "CalendarAppointmentSlotAdminSettingsProto payments_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-10T23:03:06.944Z", - "uniqueQualifier": "-6579869504202952668", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Zbjo6zX1d0AlsK646w60y0D8dtc\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Calendar" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kevin Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "CalendarAppointmentSlotAdminSettingsProto payments_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T17:46:40.675Z", - "uniqueQualifier": "-7018811880230337269", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8BiCJuVMBarS9Kpj9dJuGLgqyNA\"", - "actor": { - "callerType": "USER", - "email": "christopherjenkins@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "102.236.115.157", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Calendar" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kevin Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "CalendarAppointmentSlotAdminSettingsProto payments_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - } - ] - }, - "chat_logs": { - "items": [ - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:40:22.466Z", - "uniqueQualifier": "-7887561784838261571", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9VKGfj7DJcafbBPP_GSwytdpx7w\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting Allowlist access" - }, - { - "name": "OLD_VALUE", - "value": "ALLOW_ALL" - }, - { - "name": "NEW_VALUE", - "value": "ALLOW_SPECIFIED" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting allow_all_internal_apps" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:40:22.466Z", - "uniqueQualifier": "-7887561784838261571", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9VKGfj7DJcafbBPP_GSwytdpx7w\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting Allowlist access" - }, - { - "name": "OLD_VALUE", - "value": "ALLOW_ALL" - }, - { - "name": "NEW_VALUE", - "value": "ALLOW_SPECIFIED" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting allow_all_internal_apps" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:40:14.385Z", - "uniqueQualifier": "-6056168752789270714", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/iTBbAQhxPZsWj5LsfEqGFleRIKE\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting Allowlist access" - }, - { - "name": "OLD_VALUE", - "value": "ALLOW_SPECIFIED" - }, - { - "name": "NEW_VALUE", - "value": "ALLOW_ALL" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:39:14.005Z", - "uniqueQualifier": "-7147674165748918269", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nlTNz9E571y5mcCTVHilaRsuAQI\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting Allowlist access" - }, - { - "name": "OLD_VALUE", - "value": "ALLOW_ALL" - }, - { - "name": "NEW_VALUE", - "value": "ALLOW_SPECIFIED" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting allow_all_internal_apps" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:39:14.005Z", - "uniqueQualifier": "-7147674165748918269", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nlTNz9E571y5mcCTVHilaRsuAQI\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting Allowlist access" - }, - { - "name": "OLD_VALUE", - "value": "ALLOW_ALL" - }, - { - "name": "NEW_VALUE", - "value": "ALLOW_SPECIFIED" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting allow_all_internal_apps" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:37:05.652Z", - "uniqueQualifier": "-9205883031082977874", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hbcfwf6k22_k-3FtjvUC7V4nBIU\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting Allowlist access" - }, - { - "name": "OLD_VALUE", - "value": "ALLOW_SPECIFIED" - }, - { - "name": "NEW_VALUE", - "value": "ALLOW_ALL" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:27:47.475Z", - "uniqueQualifier": "-7014252578803603883", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1Zmoc3LHvpg9GhAvNk_9ST-3pf8\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DynamiteFileSharingSettingsProto external_file_sharing_setting" - }, - { - "name": "OLD_VALUE", - "value": "IMAGES_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "NO_FILES" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:26:03.558Z", - "uniqueQualifier": "-8950312908180674247", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_hCKnKg8Q3r8eQltZnf2GCnGN5U\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:26:03.558Z", - "uniqueQualifier": "-8950312908180674247", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_hCKnKg8Q3r8eQltZnf2GCnGN5U\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:26:03.558Z", - "uniqueQualifier": "-8950312908180674247", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_hCKnKg8Q3r8eQltZnf2GCnGN5U\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:25:35.940Z", - "uniqueQualifier": "-5717817924683121393", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/otW34L9No04sWaaJt282hmHA7fs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:25:35.940Z", - "uniqueQualifier": "-5717817924683121393", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/otW34L9No04sWaaJt282hmHA7fs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:25:35.940Z", - "uniqueQualifier": "-5717817924683121393", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/otW34L9No04sWaaJt282hmHA7fs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:24:46.421Z", - "uniqueQualifier": "-7876189068470984762", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JvnjzarJyT16jLtnnLsJwpes9xI\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: OTHER\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:23:49.482Z", - "uniqueQualifier": "-8533726947567458040", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ne5uUITWrirWbkzLstu5MyBO-a0\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:22:28.330Z", - "uniqueQualifier": "-7943145884182403662", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ry2eoi1L_GCVZVCgDn8QH9Zk_So\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:22:28.330Z", - "uniqueQualifier": "-7943145884182403662", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ry2eoi1L_GCVZVCgDn8QH9Zk_So\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:21:49.399Z", - "uniqueQualifier": "-9015781430855477844", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/qLznX7EZXrw4znlC8gqvEADbFQg\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:21:49.399Z", - "uniqueQualifier": "-9015781430855477844", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/qLznX7EZXrw4znlC8gqvEADbFQg\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:21:19.302Z", - "uniqueQualifier": "-8486376875349240445", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tuWVPtcVS2ZBavttkpTeGpacxGk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:20:25.040Z", - "uniqueQualifier": "-8636968227045980780", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5NMiXbH0m_5kIqszGP9Ez_MvTFI\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:17:20.912Z", - "uniqueQualifier": "-7673894559800395421", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YmcAl-0fyr20jCUSV-Vb8nQa8Ns\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto restrictChatToOrganization" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:17:16.890Z", - "uniqueQualifier": "-7550912556731955277", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OrJKsxVFvs2Z0F4Uvlhb8XwjwYY\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto restrictChatToOrganization" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:16:53.464Z", - "uniqueQualifier": "-8360623288448812884", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_HnPEs1aTqTHoKXfu-JeKlFRin8\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto externalChatRestriction" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS" - }, - { - "name": "NEW_VALUE", - "value": "NO_RESTRICTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:16:23.981Z", - "uniqueQualifier": "-6971315591005762236", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/LRE7nQdHjiiz8_9R6v-ya_-XB-g\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto restrictChatToOrganization" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:15:58.759Z", - "uniqueQualifier": "-7203150203936999926", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KQE8lpE1558T_OXZWAC_8i6xNRQ\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto externalChatRestriction" - }, - { - "name": "OLD_VALUE", - "value": "NO_RESTRICTION" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:15:32.025Z", - "uniqueQualifier": "-8191604283539947445", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UJKuwOpkIZWk2MBow8CKlOc2SnM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto externalChatRestriction" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS" - }, - { - "name": "NEW_VALUE", - "value": "NO_RESTRICTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:15:03.228Z", - "uniqueQualifier": "-7694512380275587787", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pbiL3fe0HxG3MWpkjF6LhI4x-zo\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto restrictChatToOrganization" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:12:44.627Z", - "uniqueQualifier": "-6647175090810509884", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6vXXkbu4jMf6imSpcmYc_j4pEoM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "RoomOtrSettingsProto otr_state" - }, - { - "name": "OLD_VALUE", - "value": "DEFAULT_OFF_THE_RECORD" - }, - { - "name": "NEW_VALUE", - "value": "DEFAULT_ON_THE_RECORD" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:12:15.974Z", - "uniqueQualifier": "-8080273420039872387", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yZc24eSucZnXeTglioSvVYzsxpE\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "RoomOtrSettingsProto otr_state" - }, - { - "name": "OLD_VALUE", - "value": "ALWAYS_OFF_THE_RECORD" - }, - { - "name": "NEW_VALUE", - "value": "DEFAULT_OFF_THE_RECORD" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:11:45.989Z", - "uniqueQualifier": "-9157814716279378327", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/eONg8SXPPLlDXjnnPYcD4Jaco0E\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "RoomOtrSettingsProto otr_state" - }, - { - "name": "OLD_VALUE", - "value": "ALWAYS_ON_THE_RECORD" - }, - { - "name": "NEW_VALUE", - "value": "ALWAYS_OFF_THE_RECORD" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:11:17.353Z", - "uniqueQualifier": "-8172147712442665897", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xOd9yPAIq_2eWMcttBz6lAqa0Xg\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "RoomOtrSettingsProto otr_state" - }, - { - "name": "OLD_VALUE", - "value": "DEFAULT_OFF_THE_RECORD" - }, - { - "name": "NEW_VALUE", - "value": "ALWAYS_ON_THE_RECORD" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:09:13.209Z", - "uniqueQualifier": "-7587608269144110522", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2l4f8-arRTwo97odfeoh9TYhkTM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DynamiteFileSharingSettingsProto external_file_sharing_setting" - }, - { - "name": "OLD_VALUE", - "value": "NO_FILES" - }, - { - "name": "NEW_VALUE", - "value": "IMAGES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:08:48.503Z", - "uniqueQualifier": "-6962493130770165557", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FYbWtLU2YcslMkEbWwl-2yqmhbY\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto allow_chat_archiving_setting_modification" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:06:38.856Z", - "uniqueQualifier": "-7399566814057475095", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YQ7b0ywNXMrnvRqjxfVHeTFudq0\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto chatsDefaultToOffTheRecord" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:06:33.988Z", - "uniqueQualifier": "-8020911819707963536", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NMoy6Si_ZuAgUyqY-Hcg8gxXMKA\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto allow_chat_archiving_setting_modification" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto chatsDefaultToOffTheRecord" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:06:33.988Z", - "uniqueQualifier": "-8020911819707963536", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NMoy6Si_ZuAgUyqY-Hcg8gxXMKA\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto allow_chat_archiving_setting_modification" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto chatsDefaultToOffTheRecord" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:06:06.990Z", - "uniqueQualifier": "-8042150540548263125", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2Ak926mxDdieR3pCSuGl688eDy0\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto chatsDefaultToOffTheRecord" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:05:44.194Z", - "uniqueQualifier": "-6617886611257823811", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/L5wXmHW5Vk7Gd-H5DYQI-ZgdljE\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto allow_chat_archiving_setting_modification" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:05:12.810Z", - "uniqueQualifier": "-5230807813889003249", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BdRXKTUdGiav0SR_EtM1IjRsLFQ\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto chatsDefaultToOffTheRecord" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-08T20:16:19.915Z", - "uniqueQualifier": "-7930101470938536214", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YaaeeEWo4R39hssag8R9g59KOUY\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Test Target Audience" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto externalChatRestriction" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS" - }, - { - "name": "NEW_VALUE", - "value": "NO_RESTRICTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T19:08:13.781Z", - "uniqueQualifier": "-5348890122661969238", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ckn34d8sJixaEawXrICSo0eFdBw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Chat app Settings - Chat apps enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T19:06:42.661Z", - "uniqueQualifier": "-5419176639400854018", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Byxh2WJn9YEO3SeXgwX_ospEh1Y\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Chat app Settings - Chat apps enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-27T14:39:18.058Z", - "uniqueQualifier": "-7949310213342848296", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OzvxstEtjCqqNzsZvzKaKaorbMQ\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "Chat app Settings - Chat apps enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T18:00:05.495Z", - "uniqueQualifier": "-5718476310452348531", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jak4ocUgxARCOyyqyxf4zFpApx8\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: CONFIDENTIAL_INFORMATION\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T17:58:59.059Z", - "uniqueQualifier": "-7709251650637614822", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7UkvbbLjhvr27I8GaXdB-9SjPyc\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: CONFIDENTIAL_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T17:58:43.519Z", - "uniqueQualifier": "-5675907858515971736", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FEuxK72ommgWu5mEDihq9k6KpYs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: SPAM\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T17:57:15.484Z", - "uniqueQualifier": "-5055238693028733494", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xpZm7cqIO93BBweOW8sGy_YY9G0\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: SPAM\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T17:55:52.803Z", - "uniqueQualifier": "-8734531393169642681", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ynArDZg5lFraGhypq8siO01zWVs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: CONFIDENTIAL_INFORMATION\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T17:54:15.520Z", - "uniqueQualifier": "-4820620952529858196", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tG3UUHi_I1PUQeP7EGng8KSRriw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: CONFIDENTIAL_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T17:54:15.520Z", - "uniqueQualifier": "-4820620952529858196", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tG3UUHi_I1PUQeP7EGng8KSRriw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: CONFIDENTIAL_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T17:52:18.319Z", - "uniqueQualifier": "-5549678074728637710", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QOXzs6KKXUkaa3bNC3DP1L4_xAs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T17:52:18.319Z", - "uniqueQualifier": "-5549678074728637710", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QOXzs6KKXUkaa3bNC3DP1L4_xAs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T17:52:18.319Z", - "uniqueQualifier": "-5549678074728637710", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QOXzs6KKXUkaa3bNC3DP1L4_xAs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T17:52:18.319Z", - "uniqueQualifier": "-5549678074728637710", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QOXzs6KKXUkaa3bNC3DP1L4_xAs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T17:50:46.165Z", - "uniqueQualifier": "-7650409460268248090", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/IfN-Bucu4Ysasp7-2MDHshFZwl8\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T17:50:22.157Z", - "uniqueQualifier": "-8217202257236044315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ni_Q3Gu2eRBB48z7qJUzqwo5UB4\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T17:50:22.157Z", - "uniqueQualifier": "-8217202257236044315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ni_Q3Gu2eRBB48z7qJUzqwo5UB4\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:54:24.847Z", - "uniqueQualifier": "-6308798392322336959", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/B8nX5vkrfLdSCG2ZlatAXOAOk2c\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:45:33.745Z", - "uniqueQualifier": "-5417962127174307015", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PvD9yZeBZFN7zMSob-BB0IcFbKg\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:59:47.456Z", - "uniqueQualifier": "-5777292877128450150", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dAOXhNItV0jxH_Urb9kLA9_TMx0\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:59:47.456Z", - "uniqueQualifier": "-5777292877128450150", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dAOXhNItV0jxH_Urb9kLA9_TMx0\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:13:30.169Z", - "uniqueQualifier": "-6977753558754250610", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/qKsX25dBFDIelv8oeQYEVClrbPE\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:09:14.542Z", - "uniqueQualifier": "-5614487196773234623", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hsL52O5MRB9QavURHMMa5dJstLw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:05:47.057Z", - "uniqueQualifier": "-6816441186651420891", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ZF6I-9zC-Ak-LebRSzldiy_0yBI\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:05:13.345Z", - "uniqueQualifier": "-8990779354522384884", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/M4nojpi2Z3sNHpygy5s8C0qNvZg\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:02:58.193Z", - "uniqueQualifier": "-8483384571925962353", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/SKaPtE6etGxa8SR_fOyvuDWUL8E\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:02:58.193Z", - "uniqueQualifier": "-8483384571925962353", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/SKaPtE6etGxa8SR_fOyvuDWUL8E\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:26:58.464Z", - "uniqueQualifier": "-9148009362511820150", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Gj_Hw3-5-ACOqHTaPYDl-ckLL9Q\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:26:58.464Z", - "uniqueQualifier": "-9148009362511820150", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Gj_Hw3-5-ACOqHTaPYDl-ckLL9Q\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:26:58.464Z", - "uniqueQualifier": "-9148009362511820150", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Gj_Hw3-5-ACOqHTaPYDl-ckLL9Q\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:25:01.490Z", - "uniqueQualifier": "-6393262787711306142", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:25:01.490Z", - "uniqueQualifier": "-6393262787711306142", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:25:01.490Z", - "uniqueQualifier": "-6393262787711306142", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:25:01.490Z", - "uniqueQualifier": "-6393262787711306142", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:25:01.490Z", - "uniqueQualifier": "-6393262787711306142", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:25:01.490Z", - "uniqueQualifier": "-6393262787711306142", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:25:01.490Z", - "uniqueQualifier": "-6393262787711306142", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:25:01.490Z", - "uniqueQualifier": "-6393262787711306142", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:23:20.517Z", - "uniqueQualifier": "-5910220960607714226", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CSUk4jW9mLqiM_1m6xlXE2rBMSs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:23:20.517Z", - "uniqueQualifier": "-5910220960607714226", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CSUk4jW9mLqiM_1m6xlXE2rBMSs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:23:20.517Z", - "uniqueQualifier": "-5910220960607714226", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CSUk4jW9mLqiM_1m6xlXE2rBMSs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:23:20.517Z", - "uniqueQualifier": "-5910220960607714226", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CSUk4jW9mLqiM_1m6xlXE2rBMSs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:23:20.517Z", - "uniqueQualifier": "-5910220960607714226", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CSUk4jW9mLqiM_1m6xlXE2rBMSs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:10:05.260Z", - "uniqueQualifier": "-5952565029117867686", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0pflB2sJMCH4Yme1QaYNeqEETOY\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "DynamiteFileSharingSettingsProto external_file_sharing_setting" - }, - { - "name": "NEW_VALUE", - "value": "ALL_FILES" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "DynamiteFileSharingSettingsProto internal_file_sharing_setting" - }, - { - "name": "NEW_VALUE", - "value": "ALL_FILES" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:10:05.260Z", - "uniqueQualifier": "-5952565029117867686", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0pflB2sJMCH4Yme1QaYNeqEETOY\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "DynamiteFileSharingSettingsProto external_file_sharing_setting" - }, - { - "name": "NEW_VALUE", - "value": "ALL_FILES" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "DynamiteFileSharingSettingsProto internal_file_sharing_setting" - }, - { - "name": "NEW_VALUE", - "value": "ALL_FILES" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:07:42.628Z", - "uniqueQualifier": "-6499201999060038490", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TCuFe4WbRSSgQRSw0Zf_VYsc5oY\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto chatsDefaultToOffTheRecord" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto allow_chat_archiving_setting_modification" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:07:42.628Z", - "uniqueQualifier": "-6499201999060038490", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TCuFe4WbRSSgQRSw0Zf_VYsc5oY\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto chatsDefaultToOffTheRecord" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto allow_chat_archiving_setting_modification" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:07:09.063Z", - "uniqueQualifier": "-8969014943281676999", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vZM-oDNQBiT849jV_vo1tmigBu0\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto chatsDefaultToOffTheRecord" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto allow_chat_archiving_setting_modification" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:07:09.063Z", - "uniqueQualifier": "-8969014943281676999", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vZM-oDNQBiT849jV_vo1tmigBu0\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto chatsDefaultToOffTheRecord" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto allow_chat_archiving_setting_modification" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:59:10.110Z", - "uniqueQualifier": "-8386834296554780685", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cjXkGwuz9-3O-srBiVCk1N--UEk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:59:10.110Z", - "uniqueQualifier": "-8386834296554780685", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cjXkGwuz9-3O-srBiVCk1N--UEk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:59:10.110Z", - "uniqueQualifier": "-8386834296554780685", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cjXkGwuz9-3O-srBiVCk1N--UEk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:59:10.110Z", - "uniqueQualifier": "-8386834296554780685", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cjXkGwuz9-3O-srBiVCk1N--UEk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:59:10.110Z", - "uniqueQualifier": "-8386834296554780685", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cjXkGwuz9-3O-srBiVCk1N--UEk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-08T20:13:50.145Z", - "uniqueQualifier": "-7222664256084686393", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ht8ZToYET6cAJ80pD81AAByIgp8\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Test Target Audience" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto restrictChatToOrganization" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Test Target Audience" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto externalChatRestriction" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-08T20:13:50.145Z", - "uniqueQualifier": "-7222664256084686393", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ht8ZToYET6cAJ80pD81AAByIgp8\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Test Target Audience" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto restrictChatToOrganization" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Test Target Audience" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto externalChatRestriction" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:56:00.449Z", - "uniqueQualifier": "-7964243820370082571", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Utum7yF9fNcrb_uFahRit5TpA_c\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:56:00.449Z", - "uniqueQualifier": "-7964243820370082571", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Utum7yF9fNcrb_uFahRit5TpA_c\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:56:00.449Z", - "uniqueQualifier": "-7964243820370082571", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Utum7yF9fNcrb_uFahRit5TpA_c\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:56:00.449Z", - "uniqueQualifier": "-7964243820370082571", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Utum7yF9fNcrb_uFahRit5TpA_c\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:56:00.449Z", - "uniqueQualifier": "-7964243820370082571", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Utum7yF9fNcrb_uFahRit5TpA_c\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:43:52.998Z", - "uniqueQualifier": "-6584289455960691129", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:43:52.998Z", - "uniqueQualifier": "-6584289455960691129", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:43:52.998Z", - "uniqueQualifier": "-6584289455960691129", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:43:52.998Z", - "uniqueQualifier": "-6584289455960691129", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:43:52.998Z", - "uniqueQualifier": "-6584289455960691129", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:43:52.998Z", - "uniqueQualifier": "-6584289455960691129", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:43:52.998Z", - "uniqueQualifier": "-6584289455960691129", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:43:52.998Z", - "uniqueQualifier": "-6584289455960691129", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:10:36.385Z", - "uniqueQualifier": "-8922480876969605161", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:10:36.385Z", - "uniqueQualifier": "-8922480876969605161", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:10:36.385Z", - "uniqueQualifier": "-8922480876969605161", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:10:36.385Z", - "uniqueQualifier": "-8922480876969605161", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:10:36.385Z", - "uniqueQualifier": "-8922480876969605161", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:10:36.385Z", - "uniqueQualifier": "-8922480876969605161", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:10:36.385Z", - "uniqueQualifier": "-8922480876969605161", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:10:36.385Z", - "uniqueQualifier": "-8922480876969605161", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:09:48.773Z", - "uniqueQualifier": "-5158239100147635314", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FashUXBqrq5qS3h7QHxVBj_61rg\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:09:48.773Z", - "uniqueQualifier": "-5158239100147635314", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FashUXBqrq5qS3h7QHxVBj_61rg\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:09:48.773Z", - "uniqueQualifier": "-5158239100147635314", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FashUXBqrq5qS3h7QHxVBj_61rg\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:09:48.773Z", - "uniqueQualifier": "-5158239100147635314", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FashUXBqrq5qS3h7QHxVBj_61rg\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:09:48.773Z", - "uniqueQualifier": "-5158239100147635314", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FashUXBqrq5qS3h7QHxVBj_61rg\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:33:33.154Z", - "uniqueQualifier": "-5480362920132431443", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ID7VtmUl_6_psKJ-VEYcFk5qv5U\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:33:33.154Z", - "uniqueQualifier": "-5480362920132431443", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ID7VtmUl_6_psKJ-VEYcFk5qv5U\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:33:33.154Z", - "uniqueQualifier": "-5480362920132431443", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ID7VtmUl_6_psKJ-VEYcFk5qv5U\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:33:33.154Z", - "uniqueQualifier": "-5480362920132431443", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ID7VtmUl_6_psKJ-VEYcFk5qv5U\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:33:33.154Z", - "uniqueQualifier": "-5480362920132431443", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ID7VtmUl_6_psKJ-VEYcFk5qv5U\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:19:28.478Z", - "uniqueQualifier": "-4803232389001906550", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:19:28.478Z", - "uniqueQualifier": "-4803232389001906550", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:19:28.478Z", - "uniqueQualifier": "-4803232389001906550", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:19:28.478Z", - "uniqueQualifier": "-4803232389001906550", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:19:28.478Z", - "uniqueQualifier": "-4803232389001906550", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:19:28.478Z", - "uniqueQualifier": "-4803232389001906550", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:19:28.478Z", - "uniqueQualifier": "-4803232389001906550", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:19:28.478Z", - "uniqueQualifier": "-4803232389001906550", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:14:49.919Z", - "uniqueQualifier": "-8398318737351595450", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:14:49.919Z", - "uniqueQualifier": "-8398318737351595450", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:14:49.919Z", - "uniqueQualifier": "-8398318737351595450", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:14:49.919Z", - "uniqueQualifier": "-8398318737351595450", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:14:49.919Z", - "uniqueQualifier": "-8398318737351595450", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:14:49.919Z", - "uniqueQualifier": "-8398318737351595450", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:14:49.919Z", - "uniqueQualifier": "-8398318737351595450", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:14:49.919Z", - "uniqueQualifier": "-8398318737351595450", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:02:20.990Z", - "uniqueQualifier": "-7223963000211338265", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:02:20.990Z", - "uniqueQualifier": "-7223963000211338265", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:02:20.990Z", - "uniqueQualifier": "-7223963000211338265", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:02:20.990Z", - "uniqueQualifier": "-7223963000211338265", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:02:20.990Z", - "uniqueQualifier": "-7223963000211338265", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:02:20.990Z", - "uniqueQualifier": "-7223963000211338265", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:02:20.990Z", - "uniqueQualifier": "-7223963000211338265", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:02:20.990Z", - "uniqueQualifier": "-7223963000211338265", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "NEW_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "NEW_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "NEW_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "NEW_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:27:25.829Z", - "uniqueQualifier": "-6257495847541990767", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/le4QDQG_HAmizJOus3mGIEDJZxA\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:27:25.829Z", - "uniqueQualifier": "-6257495847541990767", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/le4QDQG_HAmizJOus3mGIEDJZxA\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:27:25.829Z", - "uniqueQualifier": "-6257495847541990767", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/le4QDQG_HAmizJOus3mGIEDJZxA\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:26:30.463Z", - "uniqueQualifier": "-7103786263113331496", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:26:30.463Z", - "uniqueQualifier": "-7103786263113331496", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:26:30.463Z", - "uniqueQualifier": "-7103786263113331496", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:26:30.463Z", - "uniqueQualifier": "-7103786263113331496", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:26:30.463Z", - "uniqueQualifier": "-7103786263113331496", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:26:30.463Z", - "uniqueQualifier": "-7103786263113331496", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:26:30.463Z", - "uniqueQualifier": "-7103786263113331496", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:26:30.463Z", - "uniqueQualifier": "-7103786263113331496", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:22:35.533Z", - "uniqueQualifier": "-7027185209266434146", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UhtYICjbx0OJqLLB0xF0n0D6-7M\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:22:35.533Z", - "uniqueQualifier": "-7027185209266434146", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UhtYICjbx0OJqLLB0xF0n0D6-7M\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:22:35.533Z", - "uniqueQualifier": "-7027185209266434146", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UhtYICjbx0OJqLLB0xF0n0D6-7M\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:22:35.533Z", - "uniqueQualifier": "-7027185209266434146", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UhtYICjbx0OJqLLB0xF0n0D6-7M\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:22:35.533Z", - "uniqueQualifier": "-7027185209266434146", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UhtYICjbx0OJqLLB0xF0n0D6-7M\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:18:07.226Z", - "uniqueQualifier": "-6919036534415654097", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TDb5nWM96Hi_8Ydn45kEYzW8wHE\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto restrictChatToOrganization" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto externalChatRestriction" - }, - { - "name": "OLD_VALUE", - "value": "NO_RESTRICTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:18:07.226Z", - "uniqueQualifier": "-6919036534415654097", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TDb5nWM96Hi_8Ydn45kEYzW8wHE\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto restrictChatToOrganization" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto externalChatRestriction" - }, - { - "name": "OLD_VALUE", - "value": "NO_RESTRICTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:10:34.076Z", - "uniqueQualifier": "-5299828028143135252", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mJy1GifF37i5lPrTiWcNpKwIwck\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "DynamiteFileSharingSettingsProto internal_file_sharing_setting" - }, - { - "name": "OLD_VALUE", - "value": "ALL_FILES" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "DynamiteFileSharingSettingsProto external_file_sharing_setting" - }, - { - "name": "OLD_VALUE", - "value": "ALL_FILES" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:10:34.076Z", - "uniqueQualifier": "-5299828028143135252", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mJy1GifF37i5lPrTiWcNpKwIwck\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "DynamiteFileSharingSettingsProto internal_file_sharing_setting" - }, - { - "name": "OLD_VALUE", - "value": "ALL_FILES" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "DynamiteFileSharingSettingsProto external_file_sharing_setting" - }, - { - "name": "OLD_VALUE", - "value": "ALL_FILES" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:08:12.470Z", - "uniqueQualifier": "-5500264527741950737", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AFbGouAR_F_qH6cCYdpQu3c7sIs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto allow_chat_archiving_setting_modification" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto chatsDefaultToOffTheRecord" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:08:12.470Z", - "uniqueQualifier": "-5500264527741950737", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AFbGouAR_F_qH6cCYdpQu3c7sIs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto allow_chat_archiving_setting_modification" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto chatsDefaultToOffTheRecord" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:07:13.942Z", - "uniqueQualifier": "-8472704111767076250", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S5Zcd6XROmwVk9D5zlT1y74pkk0\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto allow_chat_archiving_setting_modification" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto chatsDefaultToOffTheRecord" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:07:13.942Z", - "uniqueQualifier": "-8472704111767076250", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S5Zcd6XROmwVk9D5zlT1y74pkk0\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto allow_chat_archiving_setting_modification" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto chatsDefaultToOffTheRecord" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:07:04.392Z", - "uniqueQualifier": "-5205757201527246439", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-Rp07itT7kcnwOemQruN0adlRb4\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto allow_chat_archiving_setting_modification" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto chatsDefaultToOffTheRecord" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T00:07:04.392Z", - "uniqueQualifier": "-5205757201527246439", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-Rp07itT7kcnwOemQruN0adlRb4\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto allow_chat_archiving_setting_modification" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ChatArchivingProto chatsDefaultToOffTheRecord" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:58:49.939Z", - "uniqueQualifier": "-5840617284795834714", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BdZFqiiFGkYJp9rHjlviS_fHxgM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:58:49.939Z", - "uniqueQualifier": "-5840617284795834714", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BdZFqiiFGkYJp9rHjlviS_fHxgM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:58:49.939Z", - "uniqueQualifier": "-5840617284795834714", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BdZFqiiFGkYJp9rHjlviS_fHxgM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:58:49.939Z", - "uniqueQualifier": "-5840617284795834714", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BdZFqiiFGkYJp9rHjlviS_fHxgM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:58:49.939Z", - "uniqueQualifier": "-5840617284795834714", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BdZFqiiFGkYJp9rHjlviS_fHxgM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-08T20:20:19.927Z", - "uniqueQualifier": "-5862926127405347500", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O0BvUDH2RuHyHA3fnVIds0o-tdw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Test Target Audience" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto externalChatRestriction" - }, - { - "name": "OLD_VALUE", - "value": "NO_RESTRICTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Test Target Audience" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto restrictChatToOrganization" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-08T20:20:19.927Z", - "uniqueQualifier": "-5862926127405347500", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O0BvUDH2RuHyHA3fnVIds0o-tdw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Test Target Audience" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto externalChatRestriction" - }, - { - "name": "OLD_VALUE", - "value": "NO_RESTRICTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Test Target Audience" - }, - { - "name": "SETTING_NAME", - "value": "RestrictChatProto restrictChatToOrganization" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:56:45.203Z", - "uniqueQualifier": "-5467764951882550462", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:56:45.203Z", - "uniqueQualifier": "-5467764951882550462", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:56:45.203Z", - "uniqueQualifier": "-5467764951882550462", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:56:45.203Z", - "uniqueQualifier": "-5467764951882550462", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:56:45.203Z", - "uniqueQualifier": "-5467764951882550462", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:56:45.203Z", - "uniqueQualifier": "-5467764951882550462", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:56:45.203Z", - "uniqueQualifier": "-5467764951882550462", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:56:45.203Z", - "uniqueQualifier": "-5467764951882550462", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:54:52.612Z", - "uniqueQualifier": "-5520349484868383511", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/u70YCeyrn8Xpix-3sdE9tF_FHlw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:54:52.612Z", - "uniqueQualifier": "-5520349484868383511", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/u70YCeyrn8Xpix-3sdE9tF_FHlw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:54:52.612Z", - "uniqueQualifier": "-5520349484868383511", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/u70YCeyrn8Xpix-3sdE9tF_FHlw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:54:52.612Z", - "uniqueQualifier": "-5520349484868383511", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/u70YCeyrn8Xpix-3sdE9tF_FHlw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:54:52.612Z", - "uniqueQualifier": "-5520349484868383511", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/u70YCeyrn8Xpix-3sdE9tF_FHlw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:11:08.528Z", - "uniqueQualifier": "-9019581388806799592", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:11:08.528Z", - "uniqueQualifier": "-9019581388806799592", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:11:08.528Z", - "uniqueQualifier": "-9019581388806799592", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:11:08.528Z", - "uniqueQualifier": "-9019581388806799592", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:11:08.528Z", - "uniqueQualifier": "-9019581388806799592", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:11:08.528Z", - "uniqueQualifier": "-9019581388806799592", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:11:08.528Z", - "uniqueQualifier": "-9019581388806799592", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:11:08.528Z", - "uniqueQualifier": "-9019581388806799592", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:06:37.868Z", - "uniqueQualifier": "-4683921222812677728", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OOQ83cLade92iDXgaSRtrv00ujk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:06:37.868Z", - "uniqueQualifier": "-4683921222812677728", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OOQ83cLade92iDXgaSRtrv00ujk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:06:37.868Z", - "uniqueQualifier": "-4683921222812677728", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OOQ83cLade92iDXgaSRtrv00ujk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:06:37.868Z", - "uniqueQualifier": "-4683921222812677728", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OOQ83cLade92iDXgaSRtrv00ujk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T17:06:37.868Z", - "uniqueQualifier": "-4683921222812677728", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OOQ83cLade92iDXgaSRtrv00ujk\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:21:00.296Z", - "uniqueQualifier": "-7666466332809812958", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:21:00.296Z", - "uniqueQualifier": "-7666466332809812958", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:21:00.296Z", - "uniqueQualifier": "-7666466332809812958", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:21:00.296Z", - "uniqueQualifier": "-7666466332809812958", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:21:00.296Z", - "uniqueQualifier": "-7666466332809812958", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:21:00.296Z", - "uniqueQualifier": "-7666466332809812958", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:21:00.296Z", - "uniqueQualifier": "-7666466332809812958", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:21:00.296Z", - "uniqueQualifier": "-7666466332809812958", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:16:35.910Z", - "uniqueQualifier": "-7131484956334248171", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6H6ixdKZ_M2uMgLZuI81VE1wBxQ\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:16:35.910Z", - "uniqueQualifier": "-7131484956334248171", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6H6ixdKZ_M2uMgLZuI81VE1wBxQ\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:16:35.910Z", - "uniqueQualifier": "-7131484956334248171", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6H6ixdKZ_M2uMgLZuI81VE1wBxQ\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:15:22.447Z", - "uniqueQualifier": "-7755783295568346503", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1EWmZb78oRKqG3n9Jh80LC0Z4Cc\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:15:22.447Z", - "uniqueQualifier": "-7755783295568346503", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1EWmZb78oRKqG3n9Jh80LC0Z4Cc\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:15:22.447Z", - "uniqueQualifier": "-7755783295568346503", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1EWmZb78oRKqG3n9Jh80LC0Z4Cc\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:15:22.447Z", - "uniqueQualifier": "-7755783295568346503", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1EWmZb78oRKqG3n9Jh80LC0Z4Cc\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:15:22.447Z", - "uniqueQualifier": "-7755783295568346503", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1EWmZb78oRKqG3n9Jh80LC0Z4Cc\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:13:59.974Z", - "uniqueQualifier": "-8058246490214539879", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tDCXkxssJyLX65wIqdRrF60RUPs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:13:59.974Z", - "uniqueQualifier": "-8058246490214539879", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tDCXkxssJyLX65wIqdRrF60RUPs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:13:59.974Z", - "uniqueQualifier": "-8058246490214539879", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tDCXkxssJyLX65wIqdRrF60RUPs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:13:59.974Z", - "uniqueQualifier": "-8058246490214539879", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tDCXkxssJyLX65wIqdRrF60RUPs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:13:59.974Z", - "uniqueQualifier": "-8058246490214539879", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tDCXkxssJyLX65wIqdRrF60RUPs\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:07:35.821Z", - "uniqueQualifier": "-5725972958969849410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:07:35.821Z", - "uniqueQualifier": "-5725972958969849410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:07:35.821Z", - "uniqueQualifier": "-5725972958969849410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:07:35.821Z", - "uniqueQualifier": "-5725972958969849410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:07:35.821Z", - "uniqueQualifier": "-5725972958969849410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:07:35.821Z", - "uniqueQualifier": "-5725972958969849410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:07:35.821Z", - "uniqueQualifier": "-5725972958969849410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T16:07:35.821Z", - "uniqueQualifier": "-5725972958969849410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", - "actor": { - "callerType": "USER", - "email": "jennifergonzales@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "22.180.5.214", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_ENABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto dialog_title" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto room_restrictions" - }, - { - "name": "OLD_VALUE", - "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto one_on_one_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto group_chat_reporting" - }, - { - "name": "OLD_VALUE", - "value": "CONTENT_REPORTING_STATE_DISABLED" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto custom_report_dialog" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto unsafe_dialog_description_html" - }, - { - "name": "OLD_VALUE", - "value": "" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Chat" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Brown" - }, - { - "name": "SETTING_NAME", - "value": "ContentReportingProto report_types" - }, - { - "name": "OLD_VALUE", - "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - } - ] - }, - "classroom_logs": { - "items": [ - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T01:21:27.557Z", - "uniqueQualifier": "-4754824336770494108", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ErScGmh9dKA05n6aRJlrrZO6ydk\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "TeacherPermissionsSettingProto who_can_create_class" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "NEW_VALUE", - "value": "3" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T01:03:54.167Z", - "uniqueQualifier": "-8132883445005055597", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/636X0JZzlUs2ILg2sxHA7qFBuxo\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Michael Jordan" - }, - { - "name": "SETTING_NAME", - "value": "StudentUnenrollmentSettingsProto who_can_unenroll_students" - }, - { - "name": "OLD_VALUE", - "value": "ONLY_TEACHERS_CAN_UNENROLL_STUDENTS" - }, - { - "name": "NEW_VALUE", - "value": "STUDENTS_AND_TEACHERS_CAN_UNENROLL_STUDENTS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T01:03:47.693Z", - "uniqueQualifier": "-7346744883119862855", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RpYnpRF0EwtWj1T8NHREB6kWf1o\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "StudentUnenrollmentSettingsProto who_can_unenroll_students" - }, - { - "name": "OLD_VALUE", - "value": "STUDENTS_AND_TEACHERS_CAN_UNENROLL_STUDENTS" - }, - { - "name": "NEW_VALUE", - "value": "ONLY_TEACHERS_CAN_UNENROLL_STUDENTS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T01:01:07.529Z", - "uniqueQualifier": "-6746269577276220828", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bKkwZxSK78BamFZrmEQ2k1H2MJ8\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "StudentUnenrollmentSettingsProto who_can_unenroll_students" - }, - { - "name": "OLD_VALUE", - "value": "ONLY_TEACHERS_CAN_UNENROLL_STUDENTS" - }, - { - "name": "NEW_VALUE", - "value": "STUDENTS_AND_TEACHERS_CAN_UNENROLL_STUDENTS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T00:37:26.017Z", - "uniqueQualifier": "-7003481311291604186", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hNFqBjFzCaMVr1swJCjx1mjXRq4\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Michael Jordan" - }, - { - "name": "SETTING_NAME", - "value": "ApiDataAccessSettingProto api_access_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T00:28:29.749Z", - "uniqueQualifier": "-6095003484042520079", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9eVOkxIszwS9GHIuHQFz12KR6io\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Michael Jordan" - }, - { - "name": "SETTING_NAME", - "value": "RosterImportSettingsProto sis_integrator" - }, - { - "name": "OLD_VALUE", - "value": "SIS_INTEGRATOR_CLEVER" - }, - { - "name": "NEW_VALUE", - "value": "SIS_INTEGRATOR_NONE" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T00:26:31.848Z", - "uniqueQualifier": "-6801952890455915135", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8AaViLRfFyrbFzUCPZJ4NivXljc\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "RosterImportSettingsProto sis_integrator" - }, - { - "name": "OLD_VALUE", - "value": "SIS_INTEGRATOR_CLEVER" - }, - { - "name": "NEW_VALUE", - "value": "SIS_INTEGRATOR_NONE" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T00:21:21.839Z", - "uniqueQualifier": "-7867776273521670875", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EMRYHLdUObVlPy0PCc_nDSyKmZc\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ApiDataAccessSettingProto api_access_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T23:54:24.244Z", - "uniqueQualifier": "-5593763229572017104", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DK7qA76577whXHwDV5lLlr_BuWE\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ClassMembershipSettingProto who_can_join_classes" - }, - { - "name": "OLD_VALUE", - "value": "4" - }, - { - "name": "NEW_VALUE", - "value": "1" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T23:53:07.045Z", - "uniqueQualifier": "-4988667774708903978", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9eqjEf0tUEmu9Qrb8Smze8WN-Ms\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ClassMembershipSettingProto who_can_join_classes" - }, - { - "name": "OLD_VALUE", - "value": "1" - }, - { - "name": "NEW_VALUE", - "value": "4" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T23:52:14.346Z", - "uniqueQualifier": "-5337651634364869377", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/g-4GgcY9ILr3BvvY3ojeNOlAOnc\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "ClassMembershipSettingProto which_classes_can_users_join" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "NEW_VALUE", - "value": "1" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-24T20:45:11.160Z", - "uniqueQualifier": "-8740321458255297967", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/r2rHO0-WTgxdNDr1K7afApcmtY8\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "TeacherPermissionsSettingProto who_can_create_class" - }, - { - "name": "OLD_VALUE", - "value": "1" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-24T20:44:23.749Z", - "uniqueQualifier": "-6549303659438705918", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wpyXuNOqKvNWUL1y5_Ip2CWDpCk\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "TeacherPermissionsSettingProto who_can_create_class" - }, - { - "name": "OLD_VALUE", - "value": "3" - }, - { - "name": "NEW_VALUE", - "value": "1" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-24T20:21:01.277Z", - "uniqueQualifier": "-9144290003917047606", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EXcZQAotoLZ1VmdRZ2M3rgTRJ8k\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "TeacherPermissionsSettingProto who_can_create_class" - }, - { - "name": "OLD_VALUE", - "value": "1" - }, - { - "name": "NEW_VALUE", - "value": "3" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-21T15:57:21.728Z", - "uniqueQualifier": "-6573780976234353996", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/fA7fh6KtC01OP2bj39ecvLwxNEw\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "TeacherPermissionsSettingProto who_can_create_class" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "NEW_VALUE", - "value": "1" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-21T15:55:33.964Z", - "uniqueQualifier": "-5868309474727489792", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CHUqnekaZvU3HgiZrtAJdxCX-ZY\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "TeacherPermissionsSettingProto who_can_create_class" - }, - { - "name": "OLD_VALUE", - "value": "3" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-21T15:55:22.181Z", - "uniqueQualifier": "-5318537856018611701", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7MWXSLlWIBUWGDeVni7jxMrlTU4\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "TeacherPermissionsSettingProto who_can_create_class" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "NEW_VALUE", - "value": "3" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-21T15:52:30.853Z", - "uniqueQualifier": "-7924684886310239575", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oGl1QFCNopWoOc887IqnsP4wtc8\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "TeacherPermissionsSettingProto who_can_create_class" - }, - { - "name": "OLD_VALUE", - "value": "3" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T01:03:14.924Z", - "uniqueQualifier": "-5317824849222030400", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hE221ZMsPNJkkaWATWA2sa1ULNY\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Michael Jordan" - }, - { - "name": "SETTING_NAME", - "value": "StudentUnenrollmentSettingsProto who_can_unenroll_students" - }, - { - "name": "NEW_VALUE", - "value": "ONLY_TEACHERS_CAN_UNENROLL_STUDENTS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T00:57:28.724Z", - "uniqueQualifier": "-6053662939418788326", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XwL9pZsFiEDJRUDgL9magOq3D5M\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Michael Jordan" - }, - { - "name": "SETTING_NAME", - "value": "ApiDataAccessSettingProto api_access_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T00:36:57.885Z", - "uniqueQualifier": "-8096810360987552006", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XHs81PNukW8gHlSd9T42vCDMh2M\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Michael Jordan" - }, - { - "name": "SETTING_NAME", - "value": "ApiDataAccessSettingProto api_access_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T00:27:05.183Z", - "uniqueQualifier": "-8237825120185706717", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Np54x-bLTqLNzIc8Gntwf6Rkpg8\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Michael Jordan" - }, - { - "name": "SETTING_NAME", - "value": "RosterImportSettingsProto sis_integrator" - }, - { - "name": "NEW_VALUE", - "value": "SIS_INTEGRATOR_CLEVER" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T01:04:31.757Z", - "uniqueQualifier": "-5862874507866229147", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/c8hU9xY_mqh19o-rOZRXDyIj2AM\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Michael Jordan" - }, - { - "name": "SETTING_NAME", - "value": "StudentUnenrollmentSettingsProto who_can_unenroll_students" - }, - { - "name": "OLD_VALUE", - "value": "STUDENTS_AND_TEACHERS_CAN_UNENROLL_STUDENTS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T00:59:09.045Z", - "uniqueQualifier": "-8368169694877926431", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KdI8TZvYYvKsMHOBf02hprp2ExQ\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Michael Jordan" - }, - { - "name": "SETTING_NAME", - "value": "ApiDataAccessSettingProto api_access_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T00:53:02.092Z", - "uniqueQualifier": "-6948178495355530548", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/paHvPJxLf1xcNNqZvaEskymzSME\"", - "actor": { - "callerType": "USER", - "email": "sarah61@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "210.30.114.146", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Classroom" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Michael Jordan" - }, - { - "name": "SETTING_NAME", - "value": "ApiDataAccessSettingProto api_access_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - } - ] - }, - "commoncontrols_logs": { - "items": [ - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:47:53.966Z", - "uniqueQualifier": "-5491849587234264962", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/m2nQ3MfIMrcsSCJQ-qMDs88CFGc\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:47:53.966Z", - "uniqueQualifier": "-5491849587234264962", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/m2nQ3MfIMrcsSCJQ-qMDs88CFGc\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:47:53.966Z", - "uniqueQualifier": "-5491849587234264962", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/m2nQ3MfIMrcsSCJQ-qMDs88CFGc\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:47:49.058Z", - "uniqueQualifier": "-8556964682465003782", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8xqNx7U9Sgj0b4auMQa9zoaXg4s\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:47:49.058Z", - "uniqueQualifier": "-8556964682465003782", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8xqNx7U9Sgj0b4auMQa9zoaXg4s\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:47:49.058Z", - "uniqueQualifier": "-8556964682465003782", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8xqNx7U9Sgj0b4auMQa9zoaXg4s\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:57.323Z", - "uniqueQualifier": "-9154078054218049192", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BtgM0fQZYCLO563oCevZCyTNeMk\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:57.323Z", - "uniqueQualifier": "-9154078054218049192", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BtgM0fQZYCLO563oCevZCyTNeMk\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:57.323Z", - "uniqueQualifier": "-9154078054218049192", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BtgM0fQZYCLO563oCevZCyTNeMk\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:53.706Z", - "uniqueQualifier": "-7715925066902880856", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5DaW0SAPHM_AQFPBmlIFiuPwTaM\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:53.706Z", - "uniqueQualifier": "-7715925066902880856", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5DaW0SAPHM_AQFPBmlIFiuPwTaM\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:53.706Z", - "uniqueQualifier": "-7715925066902880856", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5DaW0SAPHM_AQFPBmlIFiuPwTaM\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce password policy at next login" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:47.346Z", - "uniqueQualifier": "-5358178154939358285", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Fsp-50kB-nnMiV-jahk5FO6r6lk\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "11" - }, - { - "name": "NEW_VALUE", - "value": "12" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "11" - }, - { - "name": "NEW_VALUE", - "value": "12" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "11" - }, - { - "name": "NEW_VALUE", - "value": "12" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:47.346Z", - "uniqueQualifier": "-5358178154939358285", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Fsp-50kB-nnMiV-jahk5FO6r6lk\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "11" - }, - { - "name": "NEW_VALUE", - "value": "12" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "11" - }, - { - "name": "NEW_VALUE", - "value": "12" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "11" - }, - { - "name": "NEW_VALUE", - "value": "12" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:47.346Z", - "uniqueQualifier": "-5358178154939358285", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Fsp-50kB-nnMiV-jahk5FO6r6lk\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "11" - }, - { - "name": "NEW_VALUE", - "value": "12" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "11" - }, - { - "name": "NEW_VALUE", - "value": "12" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "11" - }, - { - "name": "NEW_VALUE", - "value": "12" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:42.894Z", - "uniqueQualifier": "-6572248101867242620", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/izMAq4myoolv3X6ivaVDmCk05jg\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "12" - }, - { - "name": "NEW_VALUE", - "value": "11" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "12" - }, - { - "name": "NEW_VALUE", - "value": "11" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "12" - }, - { - "name": "NEW_VALUE", - "value": "11" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:42.894Z", - "uniqueQualifier": "-6572248101867242620", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/izMAq4myoolv3X6ivaVDmCk05jg\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "12" - }, - { - "name": "NEW_VALUE", - "value": "11" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "12" - }, - { - "name": "NEW_VALUE", - "value": "11" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "12" - }, - { - "name": "NEW_VALUE", - "value": "11" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:42.894Z", - "uniqueQualifier": "-6572248101867242620", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/izMAq4myoolv3X6ivaVDmCk05jg\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "12" - }, - { - "name": "NEW_VALUE", - "value": "11" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "12" - }, - { - "name": "NEW_VALUE", - "value": "11" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Minimum password length" - }, - { - "name": "OLD_VALUE", - "value": "12" - }, - { - "name": "NEW_VALUE", - "value": "11" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:37.536Z", - "uniqueQualifier": "-8165213193495775752", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l7DYmK3gRoLm_omIJGMZCm4WAcM\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "365" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "365" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "365" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:37.536Z", - "uniqueQualifier": "-8165213193495775752", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l7DYmK3gRoLm_omIJGMZCm4WAcM\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "365" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "365" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "365" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:37.536Z", - "uniqueQualifier": "-8165213193495775752", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l7DYmK3gRoLm_omIJGMZCm4WAcM\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "365" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "365" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "365" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:32.307Z", - "uniqueQualifier": "-5177345264838070518", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/imzcmhc-iL2mC-hEcszAQN0pmq4\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "NEW_VALUE", - "value": "365" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "NEW_VALUE", - "value": "365" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "NEW_VALUE", - "value": "365" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:32.307Z", - "uniqueQualifier": "-5177345264838070518", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/imzcmhc-iL2mC-hEcszAQN0pmq4\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "NEW_VALUE", - "value": "365" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "NEW_VALUE", - "value": "365" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "NEW_VALUE", - "value": "365" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:32.307Z", - "uniqueQualifier": "-5177345264838070518", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/imzcmhc-iL2mC-hEcszAQN0pmq4\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "NEW_VALUE", - "value": "365" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "NEW_VALUE", - "value": "365" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Password reset frequency" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "NEW_VALUE", - "value": "365" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:26.577Z", - "uniqueQualifier": "-8513758960855696500", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hIgsN97USEvKx2V81yjK_0VPRq8\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enable password reuse" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enable password reuse" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enable password reuse" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:26.577Z", - "uniqueQualifier": "-8513758960855696500", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hIgsN97USEvKx2V81yjK_0VPRq8\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enable password reuse" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enable password reuse" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enable password reuse" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:26.577Z", - "uniqueQualifier": "-8513758960855696500", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hIgsN97USEvKx2V81yjK_0VPRq8\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enable password reuse" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enable password reuse" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enable password reuse" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:21.534Z", - "uniqueQualifier": "-5613457177495223013", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pTtseKfTcLH-fJKUNMjbIX6rxhA\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "off" - }, - { - "name": "NEW_VALUE", - "value": "on" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "off" - }, - { - "name": "NEW_VALUE", - "value": "on" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "off" - }, - { - "name": "NEW_VALUE", - "value": "on" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:21.534Z", - "uniqueQualifier": "-5613457177495223013", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pTtseKfTcLH-fJKUNMjbIX6rxhA\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "off" - }, - { - "name": "NEW_VALUE", - "value": "on" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "off" - }, - { - "name": "NEW_VALUE", - "value": "on" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "off" - }, - { - "name": "NEW_VALUE", - "value": "on" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:21.534Z", - "uniqueQualifier": "-5613457177495223013", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pTtseKfTcLH-fJKUNMjbIX6rxhA\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "off" - }, - { - "name": "NEW_VALUE", - "value": "on" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "off" - }, - { - "name": "NEW_VALUE", - "value": "on" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "off" - }, - { - "name": "NEW_VALUE", - "value": "on" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:15.284Z", - "uniqueQualifier": "-6440463830299547259", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RKrA19g3nzNlHrT1z44u_QUmkMY\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "on" - }, - { - "name": "NEW_VALUE", - "value": "off" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "on" - }, - { - "name": "NEW_VALUE", - "value": "off" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "on" - }, - { - "name": "NEW_VALUE", - "value": "off" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:15.284Z", - "uniqueQualifier": "-6440463830299547259", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RKrA19g3nzNlHrT1z44u_QUmkMY\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "on" - }, - { - "name": "NEW_VALUE", - "value": "off" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "on" - }, - { - "name": "NEW_VALUE", - "value": "off" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "on" - }, - { - "name": "NEW_VALUE", - "value": "off" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:46:15.284Z", - "uniqueQualifier": "-6440463830299547259", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RKrA19g3nzNlHrT1z44u_QUmkMY\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "on" - }, - { - "name": "NEW_VALUE", - "value": "off" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "on" - }, - { - "name": "NEW_VALUE", - "value": "off" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Password Management - Enforce strong password" - }, - { - "name": "OLD_VALUE", - "value": "on" - }, - { - "name": "NEW_VALUE", - "value": "off" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:45:00.079Z", - "uniqueQualifier": "-5621956644552598645", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBrSKL3J2iCGJuxd83vXGWYHVDE\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:45:00.079Z", - "uniqueQualifier": "-5621956644552598645", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBrSKL3J2iCGJuxd83vXGWYHVDE\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:45:00.079Z", - "uniqueQualifier": "-5621956644552598645", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBrSKL3J2iCGJuxd83vXGWYHVDE\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:45:00.079Z", - "uniqueQualifier": "-5621956644552598645", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBrSKL3J2iCGJuxd83vXGWYHVDE\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:45:00.079Z", - "uniqueQualifier": "-5621956644552598645", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBrSKL3J2iCGJuxd83vXGWYHVDE\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:45:00.079Z", - "uniqueQualifier": "-5621956644552598645", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBrSKL3J2iCGJuxd83vXGWYHVDE\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:44:54.222Z", - "uniqueQualifier": "-8226884436446217313", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yGinaRFeHk26x2iwo97hcK2FPyI\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "NEW_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "NEW_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "NEW_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:44:54.222Z", - "uniqueQualifier": "-8226884436446217313", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yGinaRFeHk26x2iwo97hcK2FPyI\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "NEW_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "NEW_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "NEW_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:44:54.222Z", - "uniqueQualifier": "-8226884436446217313", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yGinaRFeHk26x2iwo97hcK2FPyI\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "NEW_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "NEW_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto challenge_selection_behavior" - }, - { - "name": "OLD_VALUE", - "value": "PERFORM_CHALLENGE_SELECTION" - }, - { - "name": "NEW_VALUE", - "value": "BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T17:34:22.702Z", - "uniqueQualifier": "-7279467952416731009", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7b_RwMrDEqJNWvbWF6cqvh2AQco\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Multi Party Approval" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" - }, - { - "name": "OLD_VALUE", - "value": "enabled" - }, - { - "name": "NEW_VALUE", - "value": "disabled" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise_plus" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T17:33:56.626Z", - "uniqueQualifier": "-6527215884915295225", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mLpXKhjULL4UBMnY2L8c3H7opSI\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Multi Party Approval" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" - }, - { - "name": "OLD_VALUE", - "value": "disabled" - }, - { - "name": "NEW_VALUE", - "value": "enabled" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise_plus" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T17:31:24.679Z", - "uniqueQualifier": "-7878509542897140419", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/eZIMCNcfZitwKqyY7Ip6TwDofZE\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Session management settings - Session length in seconds" - }, - { - "name": "OLD_VALUE", - "value": "14400" - }, - { - "name": "NEW_VALUE", - "value": "43200" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T17:30:26.717Z", - "uniqueQualifier": "-5507031210394217215", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/u3e9WCNl-CUwo1VqkL400KwVauU\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Session management settings - Session length in seconds" - }, - { - "name": "OLD_VALUE", - "value": "1209600" - }, - { - "name": "NEW_VALUE", - "value": "14400" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T17:29:33.061Z", - "uniqueQualifier": "-6845932581957702223", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yrbpj0opEL2qQnwCMnGj64ItIGc\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Session management settings - Session length in seconds" - }, - { - "name": "OLD_VALUE", - "value": "43200" - }, - { - "name": "NEW_VALUE", - "value": "1209600" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:40:22.466Z", - "uniqueQualifier": "-7887561784838261571", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9VKGfj7DJcafbBPP_GSwytdpx7w\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting Allowlist access" - }, - { - "name": "OLD_VALUE", - "value": "ALLOW_ALL" - }, - { - "name": "NEW_VALUE", - "value": "ALLOW_SPECIFIED" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting allow_all_internal_apps" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:40:22.466Z", - "uniqueQualifier": "-7887561784838261571", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9VKGfj7DJcafbBPP_GSwytdpx7w\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting Allowlist access" - }, - { - "name": "OLD_VALUE", - "value": "ALLOW_ALL" - }, - { - "name": "NEW_VALUE", - "value": "ALLOW_SPECIFIED" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting allow_all_internal_apps" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:40:14.385Z", - "uniqueQualifier": "-6056168752789270714", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/iTBbAQhxPZsWj5LsfEqGFleRIKE\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting Allowlist access" - }, - { - "name": "OLD_VALUE", - "value": "ALLOW_SPECIFIED" - }, - { - "name": "NEW_VALUE", - "value": "ALLOW_ALL" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:39:14.005Z", - "uniqueQualifier": "-7147674165748918269", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nlTNz9E571y5mcCTVHilaRsuAQI\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting Allowlist access" - }, - { - "name": "OLD_VALUE", - "value": "ALLOW_ALL" - }, - { - "name": "NEW_VALUE", - "value": "ALLOW_SPECIFIED" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting allow_all_internal_apps" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:39:14.005Z", - "uniqueQualifier": "-7147674165748918269", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nlTNz9E571y5mcCTVHilaRsuAQI\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting Allowlist access" - }, - { - "name": "OLD_VALUE", - "value": "ALLOW_ALL" - }, - { - "name": "NEW_VALUE", - "value": "ALLOW_SPECIFIED" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting allow_all_internal_apps" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:37:05.652Z", - "uniqueQualifier": "-9205883031082977874", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hbcfwf6k22_k-3FtjvUC7V4nBIU\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Workspace Marketplace" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Apps Access Setting Allowlist access" - }, - { - "name": "OLD_VALUE", - "value": "ALLOW_SPECIFIED" - }, - { - "name": "NEW_VALUE", - "value": "ALLOW_ALL" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-20T15:18:11.682Z", - "uniqueQualifier": "-8607259591115547645", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zHJBJccIltriUHDTFh7MpZC99Kw\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Session management settings - Session length in seconds" - }, - { - "name": "OLD_VALUE", - "value": "2592000" - }, - { - "name": "NEW_VALUE", - "value": "43200" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T15:19:29.499Z", - "uniqueQualifier": "-4701419243342508728", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/fSgZOWLTiX8O9NO7l-3RE9FDOQc\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Multi Party Approval" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" - }, - { - "name": "OLD_VALUE", - "value": "enabled" - }, - { - "name": "NEW_VALUE", - "value": "disabled" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise_plus" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T15:19:22.995Z", - "uniqueQualifier": "-6428881474889308182", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oBO9jJS1j3idMdGlmOe8nObepdk\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Multi Party Approval" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" - }, - { - "name": "OLD_VALUE", - "value": "disabled" - }, - { - "name": "NEW_VALUE", - "value": "enabled" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise_plus" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-19T15:36:29.152Z", - "uniqueQualifier": "-6774740717308530731", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rDFr8Nb4gvwTWd0Wyan2Nho_wU4\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Blogger" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "UserTakeoutSettingsProto User Takeout " - }, - { - "name": "OLD_VALUE", - "value": "Enabled" - }, - { - "name": "NEW_VALUE", - "value": "Disabled" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T20:38:12.934Z", - "uniqueQualifier": "-5971069798732635140", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CfUlCTECYtLdH-ldN8bCc6auGBs\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Multi Party Approval" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" - }, - { - "name": "OLD_VALUE", - "value": "enabled" - }, - { - "name": "NEW_VALUE", - "value": "disabled" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise_plus" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T20:37:36.450Z", - "uniqueQualifier": "-8425150488407637065", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2SkHto5F4FZVi6PySgiXr7xeHM0\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Multi Party Approval" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" - }, - { - "name": "OLD_VALUE", - "value": "disabled" - }, - { - "name": "NEW_VALUE", - "value": "enabled" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise_plus" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T19:44:47.311Z", - "uniqueQualifier": "-6967671160596892741", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/MkdOi--WSeouB84uCUpWwhOq_As\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Multi Party Approval" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" - }, - { - "name": "OLD_VALUE", - "value": "enabled" - }, - { - "name": "NEW_VALUE", - "value": "disabled" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise_plus" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T19:44:35.720Z", - "uniqueQualifier": "-8251970057245659187", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/c45flI4gnX4ZU9Uxn91YRT9-LnI\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Multi Party Approval" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" - }, - { - "name": "OLD_VALUE", - "value": "disabled" - }, - { - "name": "NEW_VALUE", - "value": "enabled" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise_plus" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-01T16:02:36.845Z", - "uniqueQualifier": "-7547080330758418104", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ke7an-t4cB47XmBPsn8GEdgNM40\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Multi Party Approval" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" - }, - { - "name": "OLD_VALUE", - "value": "enabled" - }, - { - "name": "NEW_VALUE", - "value": "disabled" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise_plus" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-01T15:54:07.174Z", - "uniqueQualifier": "-9114851573922242899", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hSAFpQVBVfOV43Dnh_KvkDDsyBY\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Multi Party Approval" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" - }, - { - "name": "OLD_VALUE", - "value": "disabled" - }, - { - "name": "NEW_VALUE", - "value": "enabled" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise_plus" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-01T15:45:27.703Z", - "uniqueQualifier": "-8705676054708012046", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4kB64E_R07yvI5F-q7Uk3gnF8M4\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Multi Party Approval" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" - }, - { - "name": "OLD_VALUE", - "value": "enabled" - }, - { - "name": "NEW_VALUE", - "value": "disabled" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise_plus" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:44:54.222Z", - "uniqueQualifier": "-8226884436446217313", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ByXoEjn925I9i_arQ-wXehcUsbw\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:44:54.222Z", - "uniqueQualifier": "-8226884436446217313", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ByXoEjn925I9i_arQ-wXehcUsbw\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:44:54.222Z", - "uniqueQualifier": "-8226884436446217313", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ByXoEjn925I9i_arQ-wXehcUsbw\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "core" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" - }, - { - "name": "NEW_VALUE", - "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T17:31:33.085Z", - "uniqueQualifier": "-5505509800741520987", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oYf5AsRjUFaNOz4u_yjOGS4t5qw\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Daniel Russell" - }, - { - "name": "SETTING_NAME", - "value": "Session management settings - Session length in seconds" - }, - { - "name": "NEW_VALUE", - "value": "72000" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-01T15:45:18.569Z", - "uniqueQualifier": "-6167109452468799694", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-2Bt48rKOzmVOhF1Bm5thuwp52Q\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Multi Party Approval" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" - }, - { - "name": "NEW_VALUE", - "value": "enabled" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise_plus" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T17:32:43.206Z", - "uniqueQualifier": "-7531749608526346154", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/M34plkw2Q_g7KdCqZsXEXpu1rLA\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Security" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Daniel Russell" - }, - { - "name": "SETTING_NAME", - "value": "Session management settings - Session length in seconds" - }, - { - "name": "OLD_VALUE", - "value": "72000" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T17:28:15.342Z", - "uniqueQualifier": "4956690961299526870", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/quXUuieR4EsROC6qiNHryZxWjE8\"", - "actor": { - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "events": [ - { - "type": "SECURITY_SETTINGS", - "name": "TOGGLE_CAA_ENABLEMENT", - "parameters": [ - { - "name": "NEW_VALUE", - "value": "ENABLED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T17:27:21.709Z", - "uniqueQualifier": "5784320826109206794", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KTGiz8Z7-E25ywMtxgt5vH2PwX0\"", - "actor": { - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "events": [ - { - "type": "SECURITY_SETTINGS", - "name": "TOGGLE_CAA_ENABLEMENT", - "parameters": [ - { - "name": "NEW_VALUE", - "value": "DISABLED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T17:27:18.424Z", - "uniqueQualifier": "797569169082568616", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/k928OtmM5qpApG1ZxmPgWrAN2zU\"", - "actor": { - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "events": [ - { - "type": "SECURITY_SETTINGS", - "name": "TOGGLE_CAA_ENABLEMENT", - "parameters": [ - { - "name": "NEW_VALUE", - "value": "DISABLED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T21:21:06.841Z", - "uniqueQualifier": "-9098195182074921452", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-fQO1VttB1Obie8i8zS9CKBE21Y\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "GROUP_EMAIL", - "value": "Test Group" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T21:20:46.288Z", - "uniqueQualifier": "8025554506417096733", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zS3HSddvbnPer8u4kCOjHdrrzbg\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "GROUP_EMAIL", - "value": "Test Group" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T21:16:20.189Z", - "uniqueQualifier": "6356283915385824969", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/D1TR1mn2jV4m3nTNDvIwKEw-g_U\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T21:16:01.109Z", - "uniqueQualifier": "7204973669826879617", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/SzCRUx16q6JUq3WFPzNQnvjeRmM\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T21:09:14.177Z", - "uniqueQualifier": "8302313116147020961", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RNrPvwvGArfJNJh9_prabZiUiZ0\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Alicia Grimes" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T21:08:47.434Z", - "uniqueQualifier": "-8749900273598629428", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PoaNB1Mn23UiFStWmas0q4T5aik\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Alicia Grimes" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T21:08:23.813Z", - "uniqueQualifier": "-2006657176011927130", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2ZZie_YZHJjeztU_5SjNtcvQ150\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Alicia Grimes" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T15:15:04.510Z", - "uniqueQualifier": "-5444758841714443622", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zd0oHRz1H30sZY8gJ7Ifv1xekxg\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "Early Access Apps" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T15:14:56.923Z", - "uniqueQualifier": "-5957373208334712224", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gAP9lpj6QvRtP0_bDD_kh972Uuc\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "Early Access Apps" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T15:14:02.942Z", - "uniqueQualifier": "-5708636481598052506", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CKXjGSesbvWzCU5wOAYKityUEXQ\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "AI Studio" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T15:13:14.451Z", - "uniqueQualifier": "-5236552787674514970", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QpmFQfW7NRV6UQret9O8gZ_roMA\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "AI Studio" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T15:11:52.275Z", - "uniqueQualifier": "-170769798380779633", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9GiJqVQHVqWVuVJU-b6q8bZh_zQ\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T15:09:52.063Z", - "uniqueQualifier": "3839884327329736493", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/d_fbdFvJa_chJfoulpfORJiV0-4\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-29T16:58:53.890Z", - "uniqueQualifier": "7454046695208426259", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wES7_Ynv5c8CiZyw16LybVDvoUw\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-22T18:20:51.143Z", - "uniqueQualifier": "-7688066320309934110", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EM38FAFsPQjrzvstCc2wey7T0l0\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "Gemini" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T16:35:34.867Z", - "uniqueQualifier": "-7527263763506654985", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/J6Pbk-QpRmwtf3RNIo3EChrSprw\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T15:28:15.108Z", - "uniqueQualifier": "6601077961077712234", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2O8VGsfETfnfmBqZRaCMnPr89do\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-07T11:43:06.667Z", - "uniqueQualifier": "-7947017718017192057", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DCQPh23OixiPHvct0lsp7J6Ysdc\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "Early Access Apps" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T19:22:55.858Z", - "uniqueQualifier": "-1594877828342837660", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/69OSj6V2mD9_iXaVundnAgzOTF8\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Daniel Russell" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T19:21:04.795Z", - "uniqueQualifier": "2753106744149837378", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DVZ60mbnjb0-SaeLEkWknblA_uw\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Daniel Russell" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T19:20:59.156Z", - "uniqueQualifier": "6178707512128116339", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/irVhaBwGC1mNiciRkZXYQqWEXjE\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Daniel Russell" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T19:19:13.642Z", - "uniqueQualifier": "2808073231402698204", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Gv6XaiMq_nD6suJkxzSwTJBndQ0\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T19:19:08.164Z", - "uniqueQualifier": "8736007291127896364", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rkw5mtTUj5MbLbQWOmU45x-BnMw\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T19:08:30.787Z", - "uniqueQualifier": "533218495484865116", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NYKdZWqDJyEWI93fdecspxR5CoA\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T18:59:47.601Z", - "uniqueQualifier": "-2453065809836051332", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tTdKdRnzKNEW_bBoIK9vtnuCscc\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T13:02:25.716Z", - "uniqueQualifier": "-6733023187686062485", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1WFFW5dUtAH3Rt4tRlgLzCGaJfs\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "GROUP_EMAIL", - "value": "Test Group" - }, - { - "name": "SERVICE_NAME", - "value": "Google Meet" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-17T13:24:57.067Z", - "uniqueQualifier": "162223212287505661", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mxrwtdruurEUt_byTOSSap4u8EQ\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-17T13:17:15.082Z", - "uniqueQualifier": "1964753045072657864", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HTA6cJ12b2oz5I5yyyz1QeBn3is\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-12T15:24:57.620Z", - "uniqueQualifier": "-689788582864289", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/94Ja39XIYZ62lAFAugruZ-VlHcw\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-12T15:19:16.583Z", - "uniqueQualifier": "3590866658306550858", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hO5E-6ac0TKrbBRUJeRbK9qU80s\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Alicia Grimes" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-03T12:43:40.126Z", - "uniqueQualifier": "1462511194025694775", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KZHuaRruLn5lkB5lKfbr5bruz38\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-03T12:42:57.125Z", - "uniqueQualifier": "2444645180561800039", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jjCS2080C-2siWcbEf6_0xEP56Q\"", - "actor": { - "callerType": "USER", - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:58:45.327Z", - "uniqueQualifier": "-8862591884249620940", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0KR0tPMjV1NZS5DlepWx_Kw2Zo8\"", - "actor": { - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "SECURITY_SETTINGS", - "name": "CHANGE_ALLOWED_TWO_STEP_VERIFICATION_METHODS", - "parameters": [ - { - "name": "ALLOWED_TWO_STEP_VERIFICATION_METHOD", - "value": "NO_TELEPHONY" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:45:53.677Z", - "uniqueQualifier": "-7449040998724714735", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dZCBmBJTFPdpic8X6gGD7q59DkI\"", - "actor": { - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "SECURITY_SETTINGS", - "name": "CHANGE_ALLOWED_TWO_STEP_VERIFICATION_METHODS", - "parameters": [ - { - "name": "ALLOWED_TWO_STEP_VERIFICATION_METHOD", - "value": "ANY" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:45:44.631Z", - "uniqueQualifier": "288460892597073627", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kzc6wEQc0xQk4gunhyLsnxXskCg\"", - "actor": { - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "SECURITY_SETTINGS", - "name": "CHANGE_ALLOWED_TWO_STEP_VERIFICATION_METHODS", - "parameters": [ - { - "name": "ALLOWED_TWO_STEP_VERIFICATION_METHOD", - "value": "NO_TELEPHONY" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-20T17:31:15.867Z", - "uniqueQualifier": "-4815774139489459152", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YchKbrEhuwOtDJcRjXs8UOZxTEo\"", - "actor": { - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "events": [ - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "APPS_SCRIPT_RUNTIME" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CHAT" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "GMAIL" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CLOUD_SEARCH" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "GROUPS" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CLASSROOM" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CLOUD_PLATFORM" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "APPS_SCRIPT" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CLOUD_BILLING" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CLOUD_MACHINE_LEARNING" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "VAULT" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CONTACTS" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "TASKS" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "GSUITE_ADMIN" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "SIGN_IN" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CALENDAR" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-20T17:34:56.786Z", - "uniqueQualifier": "2298505124163386465", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uLt1j_HJwonnnWCFICDyqc6oQng\"", - "actor": { - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "events": [ - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "APPS_SCRIPT" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CLOUD_BILLING" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CALENDAR" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "DRIVE" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "GSUITE_ADMIN" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "GMAIL" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CHAT" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "TASKS" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CLASSROOM" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "MEET" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CLOUD_PLATFORM" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "SIGN_IN" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "GROUPS" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CLOUD_SEARCH" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CONTACTS" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "VAULT" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "CLOUD_MACHINE_LEARNING" - } - ] - }, - { - "type": "SECURITY_SETTINGS", - "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OAUTH2_SERVICE_NAME", - "value": "APPS_SCRIPT_RUNTIME" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:50:19.977Z", - "uniqueQualifier": "1630518378512947900", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1JX4FPsje1Rn6pFU2rjrU5hkiCY\"", - "actor": { - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "SECURITY_SETTINGS", - "name": "SIGN_IN_ONLY_THIRD_PARTY_API_ACCESS", - "parameters": [ - { - "name": "ORG_UNIT_NAME", - "value": "Daniel Russell" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:58:45.327Z", - "uniqueQualifier": "-8862591884249620940", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/B7wO4ANgpB_wEQjFVseuxbVWGnE\"", - "actor": { - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "SECURITY_SETTINGS", - "name": "CHANGE_TWO_STEP_VERIFICATION_ENROLLMENT_PERIOD_DURATION", - "parameters": [ - { - "name": "OLD_VALUE", - "value": "1 week" - }, - { - "name": "NEW_VALUE", - "value": "6 months" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-14T17:30:16.083Z", - "uniqueQualifier": "8892660873020770181", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hsJZ1-TGguVplVMgXirdzzKAwW0\"", - "actor": { - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "SECURITY_SETTINGS", - "name": "CHANGE_TWO_STEP_VERIFICATION_ENROLLMENT_PERIOD_DURATION", - "parameters": [ - { - "name": "OLD_VALUE", - "value": "None" - }, - { - "name": "NEW_VALUE", - "value": "1 week" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T21:00:18.348Z", - "uniqueQualifier": "-4565818199950087329", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oy-TAcRIgzndYHkaRfEKzUFQEBg\"", - "actor": { - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "SECURITY_SETTINGS", - "name": "CHANGE_TWO_STEP_VERIFICATION_FREQUENCY", - "parameters": [ - { - "name": "OLD_VALUE", - "value": "DISABLE_USERS_TO_TRUST_DEVICE" - }, - { - "name": "NEW_VALUE", - "value": "ENABLE_USERS_TO_TRUST_DEVICE" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "GROUP_EMAIL", - "value": "blackbrianna@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T21:00:12.784Z", - "uniqueQualifier": "-2799430038973637115", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0j6989kggFwQo2Y8eCI7PdUQt6Y\"", - "actor": { - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "SECURITY_SETTINGS", - "name": "CHANGE_TWO_STEP_VERIFICATION_FREQUENCY", - "parameters": [ - { - "name": "OLD_VALUE", - "value": "ENABLE_USERS_TO_TRUST_DEVICE" - }, - { - "name": "NEW_VALUE", - "value": "DISABLE_USERS_TO_TRUST_DEVICE" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "GROUP_EMAIL", - "value": "blackbrianna@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:45:44.631Z", - "uniqueQualifier": "288460892597073627", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pebGlNkgPdb7JIPqN0nZWpIokHM\"", - "actor": { - "email": "blackbrianna@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "56.58.225.25", - "events": [ - { - "type": "SECURITY_SETTINGS", - "name": "CHANGE_TWO_STEP_VERIFICATION_FREQUENCY", - "parameters": [ - { - "name": "OLD_VALUE", - "value": "ENABLE_USERS_TO_TRUST_DEVICE" - }, - { - "name": "NEW_VALUE", - "value": "DISABLE_USERS_TO_TRUST_DEVICE" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - } - ] - } - ] - } - ] - }, - "drive_logs": { - "items": [ - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:38:12.665Z", - "uniqueQualifier": "-5569613127991111442", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yk07l_kuavLBU7HbgX1wymos7As\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T19:10:37.808Z", - "uniqueQualifier": "-6758059041533525303", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9prwrsjXz0HwfxBeGqBo4Bo-UHc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T19:09:08.428Z", - "uniqueQualifier": "-8755822168297683805", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0U4qokKDGlMy2djmlebsNtlX3K8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T19:08:39.304Z", - "uniqueQualifier": "-5981392004795610726", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HHTWaCjk1eFC-nSmaBdP0gJcaV4\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T19:06:21.852Z", - "uniqueQualifier": "-7528104034368120774", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ANkpXRG6eTyz96ThhIRcjM2TDpw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T19:02:56.377Z", - "uniqueQualifier": "-5803188339931956713", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/qM0TYYMjbx7HHOiIx0SLril_jMY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T19:02:56.377Z", - "uniqueQualifier": "-5803188339931956713", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/qM0TYYMjbx7HHOiIx0SLril_jMY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T19:01:47.405Z", - "uniqueQualifier": "-7372451492300259829", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4g3mV3-0BgaMglFMgJGHSgQ2KYQ\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T19:01:47.405Z", - "uniqueQualifier": "-7372451492300259829", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4g3mV3-0BgaMglFMgJGHSgQ2KYQ\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T19:01:05.164Z", - "uniqueQualifier": "-6529127761578298697", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vLh8Xkdfj8aMatwhHUhFS29Ast8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T19:01:05.164Z", - "uniqueQualifier": "-6529127761578298697", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vLh8Xkdfj8aMatwhHUhFS29Ast8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:38:40.277Z", - "uniqueQualifier": "-6734309118287006481", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S8z58WKTnZumhAtZCqTNwZ7IwPI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:38:40.277Z", - "uniqueQualifier": "-6734309118287006481", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S8z58WKTnZumhAtZCqTNwZ7IwPI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:38:40.277Z", - "uniqueQualifier": "-6734309118287006481", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S8z58WKTnZumhAtZCqTNwZ7IwPI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:38:40.277Z", - "uniqueQualifier": "-6734309118287006481", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S8z58WKTnZumhAtZCqTNwZ7IwPI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:32:21.512Z", - "uniqueQualifier": "-5494505815372532044", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CLYC6UHyueHbQ-Qc__RjF7wXj1c\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:32:21.512Z", - "uniqueQualifier": "-5494505815372532044", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CLYC6UHyueHbQ-Qc__RjF7wXj1c\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:30:46.871Z", - "uniqueQualifier": "-5691191924056522617", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KEneUxp1MOLuRA5AUI13sE00-Y4\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:29:54.430Z", - "uniqueQualifier": "-4885388494769820137", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/WBeu1yvMheV1xglncPn2OxXlI8k\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-30T16:30:03.224Z", - "uniqueQualifier": "-6225018950953488785", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HcQWJuCr_hOUjAeeUDypVrzoT0A\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-30T16:27:53.794Z", - "uniqueQualifier": "-5430297109078136963", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BuXA1O9pUrqrMZ1YESf0uAaE-xM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-30T16:13:31.857Z", - "uniqueQualifier": "-6186303699170811072", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wM_GRR0fBYc6kHYHAv45MEKOCZE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T20:01:55.445Z", - "uniqueQualifier": "-9134699157413860116", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oA7KhoHahK2n7OKQgbe-Vmywz3I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T20:01:55.445Z", - "uniqueQualifier": "-9134699157413860116", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oA7KhoHahK2n7OKQgbe-Vmywz3I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T20:01:23.598Z", - "uniqueQualifier": "-6453329759918061396", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XpnZPYeZmaML3fdeIZHJjJsOadw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T20:01:23.598Z", - "uniqueQualifier": "-6453329759918061396", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XpnZPYeZmaML3fdeIZHJjJsOadw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T20:00:55.443Z", - "uniqueQualifier": "-8326487363715068696", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ec3K0QM8bkJ0-JPqEiEGdIKkZL8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T20:00:55.443Z", - "uniqueQualifier": "-8326487363715068696", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ec3K0QM8bkJ0-JPqEiEGdIKkZL8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:58:31.729Z", - "uniqueQualifier": "-5196851778320814059", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9LRQVNbpBo5sLBiAEG7BFIkNzqU\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:58:08.440Z", - "uniqueQualifier": "-8326562803321432515", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3nvuoWiHa7NbhrsT1QaZGLoD49E\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:57:59.109Z", - "uniqueQualifier": "-8679785815323904557", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5sx-rfzV_x6GDW-CZ1gHdEKAvgg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:57:59.109Z", - "uniqueQualifier": "-8679785815323904557", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5sx-rfzV_x6GDW-CZ1gHdEKAvgg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:57:35.390Z", - "uniqueQualifier": "-8726858889320538590", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0JoydjrjkLq76wWJryk2BRfZY8w\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:57:15.682Z", - "uniqueQualifier": "-9145805961328483579", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VZ9yIxWJdruRu8svQQbH6C5nRdI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:56:04.269Z", - "uniqueQualifier": "-7107712390887690156", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OOWCKkJAcIl-OXzZ1R0bfr-KnFA\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:56:04.269Z", - "uniqueQualifier": "-7107712390887690156", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OOWCKkJAcIl-OXzZ1R0bfr-KnFA\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:55:41.266Z", - "uniqueQualifier": "-6656396625333784394", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rtfDcnSsvcCSfmnwLk9Uy4PMR7k\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:55:19.200Z", - "uniqueQualifier": "-5326921170765997758", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/X2zcbiQxDj9eFErHw-Q_KU-RpZA\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:54:18.003Z", - "uniqueQualifier": "-5679489818711062864", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Cl6iiG_k7jRX81bxQQTb9AHLUKI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:53:47.137Z", - "uniqueQualifier": "-5403658130323572786", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0g8LugynGMoyATtsZAHjoqVoqTI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:53:26.003Z", - "uniqueQualifier": "-8959992541733734030", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dXuf5Mh2-2RvFN3U16QYAA0wNQs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:53:26.003Z", - "uniqueQualifier": "-8959992541733734030", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dXuf5Mh2-2RvFN3U16QYAA0wNQs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:52:56.659Z", - "uniqueQualifier": "-6951596531681174322", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yNsg_3vyF-Eu88sWW8ABshGPaEE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:47:00.136Z", - "uniqueQualifier": "-4717553201036379833", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/IoXc_4VFd0P0BzqLqhBzHfFQQgM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:45:47.941Z", - "uniqueQualifier": "-8502405197156787753", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GYmZ18LZDAALYIUE72bqm4quZKk\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:45:07.128Z", - "uniqueQualifier": "-5861564536069775716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AHER5QwCAQtGbAuro0LKILupsuk\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:44:21.968Z", - "uniqueQualifier": "-8912390425079681575", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VC4CTr79qAR3SuLVNWdPegRXr1g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-23T19:43:57.475Z", - "uniqueQualifier": "-7364996423626572868", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/IBWzHU9YC3w-dGJY3ml4uPjNpp0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T19:12:19.321Z", - "uniqueQualifier": "-4998972159258949478", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4OhL4bbBLlw6ul5wah9CoD6aYO0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T19:11:53.578Z", - "uniqueQualifier": "-8126025845543083768", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KvKOkiOjmTZsLoA99zuY5limTk4\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T19:05:26.350Z", - "uniqueQualifier": "-6767846494866817203", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wE1tQagsgsUr5AjQtPymEAwtfCY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T19:00:27.342Z", - "uniqueQualifier": "-6730178810369085249", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CKn1o-4ZTsFbUzxmfbnHcz6LcOc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T19:00:01.078Z", - "uniqueQualifier": "-5240174143983148338", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pgnasidKTeg__uHS3kSOufcze1g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T18:58:58.026Z", - "uniqueQualifier": "-7074314406262478515", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/m15eeIs7X4oFoTOLpobBIyKCCTs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T18:57:21.303Z", - "uniqueQualifier": "-7554536391614843324", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-6-lHb8xFHc2uzOCv2nHjn2mXII\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T18:48:11.080Z", - "uniqueQualifier": "-8071914226820076005", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ipUPAXwxSz6t8-wederGnh60NEk\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T18:48:03.414Z", - "uniqueQualifier": "-7988960708387797700", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4qrourndo4SLA_xv9Bh7i7XMgGg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T18:48:03.414Z", - "uniqueQualifier": "-7988960708387797700", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4qrourndo4SLA_xv9Bh7i7XMgGg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T18:43:29.582Z", - "uniqueQualifier": "-8352132975062667604", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tp50vgEu5kpfdN20B83zk5ToVc8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T18:42:54.032Z", - "uniqueQualifier": "-8247863007111965108", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/K9OiYUpgNrzYeohkUpqvWNBpdBs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T18:42:22.806Z", - "uniqueQualifier": "-6026236608927380466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jVpwz-0fDNA5P9TxYmuPvcG_694\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:40:52.551Z", - "uniqueQualifier": "-7117539780352382374", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7-TKiP7GsvW2i0oFdEcUg35LvsA\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:31:02.686Z", - "uniqueQualifier": "-4791844544329951549", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/iMH_tB-05bVsl1TYdi_eSMxYu0o\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:30:55.529Z", - "uniqueQualifier": "-9051509004331515822", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/i9iOXxhn6Rv9AHmalS2ljZ-Gs0A\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:23:40.131Z", - "uniqueQualifier": "-8365957919479801761", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ICTqgaYb6AwCXoXoPugkUUQJxmQ\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:23:34.000Z", - "uniqueQualifier": "-8814392527670997869", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Z79-ryBDKVkHBn88rKH9VOdIOno\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:22:40.015Z", - "uniqueQualifier": "-8459877995155770596", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9Qpwnt1QjM_pnAnRNZsOoIwoREc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:22:11.800Z", - "uniqueQualifier": "-8204039899997021240", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EebPv7dHHhjvAC9GMiksQEA3J2g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:21:24.919Z", - "uniqueQualifier": "-5078314506290659482", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/qyG200eBZ-Wgldcom81QKxnJpYM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:18:56.112Z", - "uniqueQualifier": "-9155722522549445993", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EWkZOLA1JVVJFnjf5iUjI_djSNk\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:10:52.853Z", - "uniqueQualifier": "-6235728671043758466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ezmEujnk9ZNQZsiMxcwfe-_STzk\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:10:46.658Z", - "uniqueQualifier": "-8905326178653500149", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2AbE4LwUwcV_ECbr0WTGHFX9_qk\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:09:46.911Z", - "uniqueQualifier": "-6708064944569813759", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/fEGwdH-QcJyp_9Qij6Sgz_NzNKM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:08:21.931Z", - "uniqueQualifier": "-4747488971726149404", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5PBDGjmJxmK34_LzbBmGBs3hBuc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:02:25.752Z", - "uniqueQualifier": "-4684204801873804587", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FN0FyuAJkjhd4Z0CHNV1P3atdRc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:01:50.456Z", - "uniqueQualifier": "-8435808754725603711", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VZuqZnI9samiaJP1V_Cqp46V4Fg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:00:42.150Z", - "uniqueQualifier": "-5056938647001635462", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Aa-iisAYoBe5QiQCLyU3hpmm4s0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:00:14.598Z", - "uniqueQualifier": "-8749884811971227313", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zBqm9h5tOANGg8kaEDeN0gtz518\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:59:30.080Z", - "uniqueQualifier": "-7756381434811792338", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mqNl1B6hRXtUJ8dKMhrccKkkreY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:56:38.188Z", - "uniqueQualifier": "-6023759064908813488", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/sJg_WksREChbrcT1Eiw1vAqyjuc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:54:49.060Z", - "uniqueQualifier": "-4804016798243901945", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JQFBTnJEmn6dZIlNA1R6dzHj4AU\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:52:38.138Z", - "uniqueQualifier": "-4764068213201030510", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KkZz9BCjqVQb4r4HtoFR3vg9MU0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:45:09.961Z", - "uniqueQualifier": "-7543802203887670457", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RWeJmD1Cg-jMMxDWXniQEmxCkqQ\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:44:41.587Z", - "uniqueQualifier": "-6525998659130341921", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HJ7yCNXA-xwg-2bVa7JXnisRyYQ\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:44:21.200Z", - "uniqueQualifier": "-7483476845200835575", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0_zb-a5UE7PRdbvuT6i30NWJj-g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:43:23.151Z", - "uniqueQualifier": "-7266487134781027180", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ri5jA4TPh1vnahjJd3MsgVX_7X0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:43:16.575Z", - "uniqueQualifier": "-6984660197905590688", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YODVXy1utHmAOiYQT_50dKjvBow\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:43:09.942Z", - "uniqueQualifier": "-8301029587016761168", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3lIc8V5JHIXiuh8rX_xdbzMSLhA\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:28:00.780Z", - "uniqueQualifier": "-5504087882441373682", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BwhQOIIDA5SWwfiZOjJ5QPHloU8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:27:10.633Z", - "uniqueQualifier": "-8892450140149394529", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mN3R9k360BzgRfRVu52Hl1GCyvo\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:27:10.633Z", - "uniqueQualifier": "-8892450140149394529", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mN3R9k360BzgRfRVu52Hl1GCyvo\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:26:26.599Z", - "uniqueQualifier": "-8079764369220131555", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0BjVV-6iHdnnGv1DynY39QVOXhg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:16:22.858Z", - "uniqueQualifier": "-5935676084988433480", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l7CgT2uJytXycqjQWQVMsCRV0oc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:15:37.200Z", - "uniqueQualifier": "-5911285786208974711", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zXZ-CELfD-ds1IEiGa1lVZ9L2Hw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T21:39:50.239Z", - "uniqueQualifier": "-5759689120411696213", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mXVsOBJB6lNGvFWNaQhqNNYs4C8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T21:39:50.239Z", - "uniqueQualifier": "-5759689120411696213", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mXVsOBJB6lNGvFWNaQhqNNYs4C8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T21:38:04.443Z", - "uniqueQualifier": "-5178734363784026559", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bbp38Bh5Pxl5NFGuF4wcDjChzhw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T21:38:04.443Z", - "uniqueQualifier": "-5178734363784026559", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bbp38Bh5Pxl5NFGuF4wcDjChzhw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T21:36:04.352Z", - "uniqueQualifier": "-8776910573280519828", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HR4VoF6fvWdobuKyvlRbit2m778\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T21:36:04.352Z", - "uniqueQualifier": "-8776910573280519828", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HR4VoF6fvWdobuKyvlRbit2m778\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T21:28:13.472Z", - "uniqueQualifier": "-5535100988903818971", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/c0kQXBXh0QmHysYzXTtjma-hoyo\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T21:28:13.472Z", - "uniqueQualifier": "-5535100988903818971", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/c0kQXBXh0QmHysYzXTtjma-hoyo\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T21:23:25.567Z", - "uniqueQualifier": "-5727240369047691672", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DFqlS76zHRqbJ1_lTsmMReWLqYs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T21:23:25.567Z", - "uniqueQualifier": "-5727240369047691672", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DFqlS76zHRqbJ1_lTsmMReWLqYs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T20:46:13.506Z", - "uniqueQualifier": "-7662675618627325231", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hJDiwF4AA4ybR4eUHOj8Ae4hszw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T20:46:13.506Z", - "uniqueQualifier": "-7662675618627325231", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hJDiwF4AA4ybR4eUHOj8Ae4hszw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T20:45:37.595Z", - "uniqueQualifier": "-6885387667700797003", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KT_DPXf0sGj3tqu4eQ0g6ZNqfU0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T20:45:37.595Z", - "uniqueQualifier": "-6885387667700797003", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KT_DPXf0sGj3tqu4eQ0g6ZNqfU0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T20:44:29.215Z", - "uniqueQualifier": "-6561757034096579114", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/921Z4QKmL2IsQmdzbRQ8rtiKz54\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T20:44:29.215Z", - "uniqueQualifier": "-6561757034096579114", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/921Z4QKmL2IsQmdzbRQ8rtiKz54\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T20:44:29.215Z", - "uniqueQualifier": "-6561757034096579114", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/921Z4QKmL2IsQmdzbRQ8rtiKz54\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T20:44:29.215Z", - "uniqueQualifier": "-6561757034096579114", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/921Z4QKmL2IsQmdzbRQ8rtiKz54\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings less_secure_link_option" - }, - { - "name": "OLD_VALUE", - "value": "REMOVE_LESS_SECURE_LINKS" - }, - { - "name": "NEW_VALUE", - "value": "REQUIRE_LESS_SECURE_LINKS" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T20:43:11.527Z", - "uniqueQualifier": "-5278963296338657499", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3HpW-i74oSm0mglMn8YB6aU2KuU\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T20:43:11.527Z", - "uniqueQualifier": "-5278963296338657499", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3HpW-i74oSm0mglMn8YB6aU2KuU\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Link Security Update Settings allow_less_secure_link_user_restore" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T19:46:48.845Z", - "uniqueQualifier": "-7840068786409668411", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/X1YqgcO7_5bfjrRwQuXxTOxUTW4\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T19:41:02.303Z", - "uniqueQualifier": "-5867520479533792529", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/R-pwGFcJvg77Kw7dqjFuvq1Y1Ko\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T19:41:02.303Z", - "uniqueQualifier": "-5867520479533792529", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/R-pwGFcJvg77Kw7dqjFuvq1Y1Ko\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T19:38:30.001Z", - "uniqueQualifier": "-6726709835500733171", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HRsjtXY9cucastyHwLPCUwfaQR8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:39:23.414Z", - "uniqueQualifier": "-7543828473165211434", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:39:23.414Z", - "uniqueQualifier": "-7543828473165211434", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:39:23.414Z", - "uniqueQualifier": "-7543828473165211434", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:39:23.414Z", - "uniqueQualifier": "-7543828473165211434", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:39:23.414Z", - "uniqueQualifier": "-7543828473165211434", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:39:23.414Z", - "uniqueQualifier": "-7543828473165211434", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:39:23.414Z", - "uniqueQualifier": "-7543828473165211434", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:39:23.414Z", - "uniqueQualifier": "-7543828473165211434", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T19:11:24.975Z", - "uniqueQualifier": "-5148461338551327485", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TDy6wfAv6z0vJHw7RCqwdvvD5BE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T19:11:24.975Z", - "uniqueQualifier": "-5148461338551327485", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TDy6wfAv6z0vJHw7RCqwdvvD5BE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T19:11:24.975Z", - "uniqueQualifier": "-5148461338551327485", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TDy6wfAv6z0vJHw7RCqwdvvD5BE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T19:11:24.975Z", - "uniqueQualifier": "-5148461338551327485", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TDy6wfAv6z0vJHw7RCqwdvvD5BE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:38:30.847Z", - "uniqueQualifier": "-6333910015986764900", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:38:30.847Z", - "uniqueQualifier": "-6333910015986764900", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:38:30.847Z", - "uniqueQualifier": "-6333910015986764900", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:38:30.847Z", - "uniqueQualifier": "-6333910015986764900", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:38:30.847Z", - "uniqueQualifier": "-6333910015986764900", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:38:30.847Z", - "uniqueQualifier": "-6333910015986764900", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:38:30.847Z", - "uniqueQualifier": "-6333910015986764900", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:38:30.847Z", - "uniqueQualifier": "-6333910015986764900", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:30:37.984Z", - "uniqueQualifier": "-4958151055873361268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:30:37.984Z", - "uniqueQualifier": "-4958151055873361268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:30:37.984Z", - "uniqueQualifier": "-4958151055873361268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:30:37.984Z", - "uniqueQualifier": "-4958151055873361268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:30:37.984Z", - "uniqueQualifier": "-4958151055873361268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:30:37.984Z", - "uniqueQualifier": "-4958151055873361268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:30:37.984Z", - "uniqueQualifier": "-4958151055873361268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:30:37.984Z", - "uniqueQualifier": "-4958151055873361268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:30:27.593Z", - "uniqueQualifier": "-6695876437962672817", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:30:27.593Z", - "uniqueQualifier": "-6695876437962672817", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:30:27.593Z", - "uniqueQualifier": "-6695876437962672817", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:30:27.593Z", - "uniqueQualifier": "-6695876437962672817", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:30:27.593Z", - "uniqueQualifier": "-6695876437962672817", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:30:27.593Z", - "uniqueQualifier": "-6695876437962672817", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:30:27.593Z", - "uniqueQualifier": "-6695876437962672817", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:30:27.593Z", - "uniqueQualifier": "-6695876437962672817", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:23:08.962Z", - "uniqueQualifier": "-7854597488817395026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:23:08.962Z", - "uniqueQualifier": "-7854597488817395026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:23:08.962Z", - "uniqueQualifier": "-7854597488817395026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:23:08.962Z", - "uniqueQualifier": "-7854597488817395026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:23:08.962Z", - "uniqueQualifier": "-7854597488817395026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:23:08.962Z", - "uniqueQualifier": "-7854597488817395026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:23:08.962Z", - "uniqueQualifier": "-7854597488817395026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:23:08.962Z", - "uniqueQualifier": "-7854597488817395026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:10:14.372Z", - "uniqueQualifier": "-6905246942054429469", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:10:14.372Z", - "uniqueQualifier": "-6905246942054429469", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:10:14.372Z", - "uniqueQualifier": "-6905246942054429469", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:10:14.372Z", - "uniqueQualifier": "-6905246942054429469", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:10:14.372Z", - "uniqueQualifier": "-6905246942054429469", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:10:14.372Z", - "uniqueQualifier": "-6905246942054429469", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:10:14.372Z", - "uniqueQualifier": "-6905246942054429469", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:10:14.372Z", - "uniqueQualifier": "-6905246942054429469", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:05:07.096Z", - "uniqueQualifier": "-5268349470360858805", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:05:07.096Z", - "uniqueQualifier": "-5268349470360858805", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:05:07.096Z", - "uniqueQualifier": "-5268349470360858805", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:05:07.096Z", - "uniqueQualifier": "-5268349470360858805", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:05:07.096Z", - "uniqueQualifier": "-5268349470360858805", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:05:07.096Z", - "uniqueQualifier": "-5268349470360858805", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:05:07.096Z", - "uniqueQualifier": "-5268349470360858805", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:05:07.096Z", - "uniqueQualifier": "-5268349470360858805", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:00:54.168Z", - "uniqueQualifier": "-8164944329627578456", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:00:54.168Z", - "uniqueQualifier": "-8164944329627578456", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:00:54.168Z", - "uniqueQualifier": "-8164944329627578456", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:00:54.168Z", - "uniqueQualifier": "-8164944329627578456", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:00:54.168Z", - "uniqueQualifier": "-8164944329627578456", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:00:54.168Z", - "uniqueQualifier": "-8164944329627578456", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:00:54.168Z", - "uniqueQualifier": "-8164944329627578456", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:00:54.168Z", - "uniqueQualifier": "-8164944329627578456", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:51:28.060Z", - "uniqueQualifier": "-8600538663807890321", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:51:28.060Z", - "uniqueQualifier": "-8600538663807890321", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:51:28.060Z", - "uniqueQualifier": "-8600538663807890321", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:51:28.060Z", - "uniqueQualifier": "-8600538663807890321", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:51:28.060Z", - "uniqueQualifier": "-8600538663807890321", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:51:28.060Z", - "uniqueQualifier": "-8600538663807890321", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:51:28.060Z", - "uniqueQualifier": "-8600538663807890321", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:51:28.060Z", - "uniqueQualifier": "-8600538663807890321", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "NEW_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "NEW_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:16:33.088Z", - "uniqueQualifier": "-8756543548400331835", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vUyQqhWW_qyShwrq9Ts8cdoMQ-I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:16:33.088Z", - "uniqueQualifier": "-8756543548400331835", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vUyQqhWW_qyShwrq9Ts8cdoMQ-I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:16:33.088Z", - "uniqueQualifier": "-8756543548400331835", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vUyQqhWW_qyShwrq9Ts8cdoMQ-I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:16:33.088Z", - "uniqueQualifier": "-8756543548400331835", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vUyQqhWW_qyShwrq9Ts8cdoMQ-I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:12:09.138Z", - "uniqueQualifier": "-8674495978124856876", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gpmraVzsuaMCBKTS3-hXtKnPi40\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:12:09.138Z", - "uniqueQualifier": "-8674495978124856876", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gpmraVzsuaMCBKTS3-hXtKnPi40\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:12:09.138Z", - "uniqueQualifier": "-8674495978124856876", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gpmraVzsuaMCBKTS3-hXtKnPi40\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:12:09.138Z", - "uniqueQualifier": "-8674495978124856876", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gpmraVzsuaMCBKTS3-hXtKnPi40\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-14T20:22:49.449Z", - "uniqueQualifier": "-4992673842433524886", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xE26F_IXhHxSXxe4yYKjFTwILDY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-14T20:22:49.449Z", - "uniqueQualifier": "-4992673842433524886", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xE26F_IXhHxSXxe4yYKjFTwILDY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-14T20:22:49.449Z", - "uniqueQualifier": "-4992673842433524886", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xE26F_IXhHxSXxe4yYKjFTwILDY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-14T20:22:49.449Z", - "uniqueQualifier": "-4992673842433524886", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xE26F_IXhHxSXxe4yYKjFTwILDY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T19:45:50.707Z", - "uniqueQualifier": "-5905259503042522115", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cKAjNea8KeVk3wOdQMOJuihFRHM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T19:45:50.707Z", - "uniqueQualifier": "-5905259503042522115", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cKAjNea8KeVk3wOdQMOJuihFRHM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T19:45:50.707Z", - "uniqueQualifier": "-5905259503042522115", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cKAjNea8KeVk3wOdQMOJuihFRHM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T19:45:50.707Z", - "uniqueQualifier": "-5905259503042522115", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cKAjNea8KeVk3wOdQMOJuihFRHM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:41:34.872Z", - "uniqueQualifier": "-5302348737094414354", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:41:34.872Z", - "uniqueQualifier": "-5302348737094414354", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:41:34.872Z", - "uniqueQualifier": "-5302348737094414354", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:41:34.872Z", - "uniqueQualifier": "-5302348737094414354", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:41:34.872Z", - "uniqueQualifier": "-5302348737094414354", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:41:34.872Z", - "uniqueQualifier": "-5302348737094414354", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:41:34.872Z", - "uniqueQualifier": "-5302348737094414354", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:41:34.872Z", - "uniqueQualifier": "-5302348737094414354", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:39:21.719Z", - "uniqueQualifier": "-5464767165220701432", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:39:21.719Z", - "uniqueQualifier": "-5464767165220701432", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:39:21.719Z", - "uniqueQualifier": "-5464767165220701432", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:39:21.719Z", - "uniqueQualifier": "-5464767165220701432", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:39:21.719Z", - "uniqueQualifier": "-5464767165220701432", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:39:21.719Z", - "uniqueQualifier": "-5464767165220701432", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:39:21.719Z", - "uniqueQualifier": "-5464767165220701432", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:39:21.719Z", - "uniqueQualifier": "-5464767165220701432", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:31:16.119Z", - "uniqueQualifier": "-5778436257423026820", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:31:16.119Z", - "uniqueQualifier": "-5778436257423026820", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:31:16.119Z", - "uniqueQualifier": "-5778436257423026820", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:31:16.119Z", - "uniqueQualifier": "-5778436257423026820", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:31:16.119Z", - "uniqueQualifier": "-5778436257423026820", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:31:16.119Z", - "uniqueQualifier": "-5778436257423026820", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:31:16.119Z", - "uniqueQualifier": "-5778436257423026820", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T18:31:16.119Z", - "uniqueQualifier": "-5778436257423026820", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:51.398Z", - "uniqueQualifier": "-7889119807750542340", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:51.398Z", - "uniqueQualifier": "-7889119807750542340", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:51.398Z", - "uniqueQualifier": "-7889119807750542340", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:51.398Z", - "uniqueQualifier": "-7889119807750542340", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:51.398Z", - "uniqueQualifier": "-7889119807750542340", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:51.398Z", - "uniqueQualifier": "-7889119807750542340", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:51.398Z", - "uniqueQualifier": "-7889119807750542340", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:51.398Z", - "uniqueQualifier": "-7889119807750542340", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed_Lorraine Ortiz" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:29.655Z", - "uniqueQualifier": "-9183031976333250302", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:29.655Z", - "uniqueQualifier": "-9183031976333250302", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:29.655Z", - "uniqueQualifier": "-9183031976333250302", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:29.655Z", - "uniqueQualifier": "-9183031976333250302", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:29.655Z", - "uniqueQualifier": "-9183031976333250302", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:29.655Z", - "uniqueQualifier": "-9183031976333250302", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:29.655Z", - "uniqueQualifier": "-9183031976333250302", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:29.655Z", - "uniqueQualifier": "-9183031976333250302", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:07.694Z", - "uniqueQualifier": "-4619490842213982766", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:07.694Z", - "uniqueQualifier": "-4619490842213982766", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:07.694Z", - "uniqueQualifier": "-4619490842213982766", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:07.694Z", - "uniqueQualifier": "-4619490842213982766", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:07.694Z", - "uniqueQualifier": "-4619490842213982766", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:07.694Z", - "uniqueQualifier": "-4619490842213982766", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:07.694Z", - "uniqueQualifier": "-4619490842213982766", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:41:07.694Z", - "uniqueQualifier": "-4619490842213982766", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:32:10.562Z", - "uniqueQualifier": "-7442598608420395667", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:32:10.562Z", - "uniqueQualifier": "-7442598608420395667", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:32:10.562Z", - "uniqueQualifier": "-7442598608420395667", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:32:10.562Z", - "uniqueQualifier": "-7442598608420395667", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:32:10.562Z", - "uniqueQualifier": "-7442598608420395667", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:32:10.562Z", - "uniqueQualifier": "-7442598608420395667", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:32:10.562Z", - "uniqueQualifier": "-7442598608420395667", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:32:10.562Z", - "uniqueQualifier": "-7442598608420395667", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:09:04.331Z", - "uniqueQualifier": "-6365131904920266122", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:09:04.331Z", - "uniqueQualifier": "-6365131904920266122", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:09:04.331Z", - "uniqueQualifier": "-6365131904920266122", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:09:04.331Z", - "uniqueQualifier": "-6365131904920266122", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:09:04.331Z", - "uniqueQualifier": "-6365131904920266122", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:09:04.331Z", - "uniqueQualifier": "-6365131904920266122", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:09:04.331Z", - "uniqueQualifier": "-6365131904920266122", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T20:09:04.331Z", - "uniqueQualifier": "-6365131904920266122", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:52:27.744Z", - "uniqueQualifier": "-9162015220612908901", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:52:27.744Z", - "uniqueQualifier": "-9162015220612908901", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:52:27.744Z", - "uniqueQualifier": "-9162015220612908901", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:52:27.744Z", - "uniqueQualifier": "-9162015220612908901", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:52:27.744Z", - "uniqueQualifier": "-9162015220612908901", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:52:27.744Z", - "uniqueQualifier": "-9162015220612908901", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:52:27.744Z", - "uniqueQualifier": "-9162015220612908901", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:52:27.744Z", - "uniqueQualifier": "-9162015220612908901", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation team_drive_placement_policy" - }, - { - "name": "OLD_VALUE", - "value": "CUSTOM_OU" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation CanCreateSharedDrives" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation org_unit_id_for_new_team_drives" - }, - { - "name": "OLD_VALUE", - "value": "50000000201177472" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_admin_only" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_direct_access" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kari Gonzalez" - }, - { - "name": "SETTING_NAME", - "value": "Shared Drive Creation new_team_drive_restricts_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:27:36.698Z", - "uniqueQualifier": "-7687371714476857918", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ygW-3Zn08SSOQV-94noY9GQZM-I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:27:36.698Z", - "uniqueQualifier": "-7687371714476857918", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ygW-3Zn08SSOQV-94noY9GQZM-I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:27:36.698Z", - "uniqueQualifier": "-7687371714476857918", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ygW-3Zn08SSOQV-94noY9GQZM-I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-15T19:27:36.698Z", - "uniqueQualifier": "-7687371714476857918", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ygW-3Zn08SSOQV-94noY9GQZM-I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T19:49:17.093Z", - "uniqueQualifier": "-8847021981382581558", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PgMXBWPGSitB7JKaOcr2w7lfj28\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T19:49:17.093Z", - "uniqueQualifier": "-8847021981382581558", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PgMXBWPGSitB7JKaOcr2w7lfj28\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T19:49:17.093Z", - "uniqueQualifier": "-8847021981382581558", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PgMXBWPGSitB7JKaOcr2w7lfj28\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T19:49:17.093Z", - "uniqueQualifier": "-8847021981382581558", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PgMXBWPGSitB7JKaOcr2w7lfj28\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto presence_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto company_owned_only_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto show_drive_fs_download" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Drive and Docs" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Kelly Mcdonald" - }, - { - "name": "SETTING_NAME", - "value": "DriveFsSettingsProto drive_fs_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:27:06.928Z", - "uniqueQualifier": "-7944146643646203860", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/E5Sk8y2gpzavonVy9z29fp7ZPO4\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "PRIVATE" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:26:34.965Z", - "uniqueQualifier": "-7687136886147160443", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HJH8t-IfrkNg-Bt8c3fR3OmrX0k\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "PRIVATE" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:25:50.671Z", - "uniqueQualifier": "-5803808820973916132", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NydWCMr5I5N2JExEHWQWZBzCnF0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "PRIVATE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:25:27.510Z", - "uniqueQualifier": "-5930463038252132668", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/iE4caKrQDTTpXcxplpGVUT80OXQ\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:24:53.674Z", - "uniqueQualifier": "-7950220892565466541", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3P3GRl8HdyivTu8lSxWOaqDmVoE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "PEOPLE_WITH_LINK" - }, - { - "name": "NEW_VALUE", - "value": "PRIVATE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:17:29.681Z", - "uniqueQualifier": "-6765118464842070461", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ffmg7ga4pXupuYpU9HWzP3bDbO8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:17:04.322Z", - "uniqueQualifier": "-4733386038194055901", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/idygIJk1QvFLzxItiS08rvc6zJk\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "CROSS_DOMAIN_MOVES_BLOCKED" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:14:51.717Z", - "uniqueQualifier": "-9155749311370271342", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5AMrU8MnAPshkeRE-ZDnJie2Rto\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "OLD_VALUE", - "value": "NAMED_PARTIES_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "OLD_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:14:37.153Z", - "uniqueQualifier": "-6835896554806705476", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TTjorX_ahOLCunu3D-EUedU0lKw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "CROSS_DOMAIN_MOVES_BLOCKED" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:56:09.779Z", - "uniqueQualifier": "-6912066191548260718", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/X6h5Z521EvGbgIwXwOetRXfsnzk\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_OR_NAMED_PARTIES" - }, - { - "name": "NEW_VALUE", - "value": "NAMED_PARTIES_ONLY" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:55:57.282Z", - "uniqueQualifier": "-5445592750742357330", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dyg5druXqwZ5UIqDFv7-aS0At60\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_OR_NAMED_PARTIES" - }, - { - "name": "NEW_VALUE", - "value": "NAMED_PARTIES_ONLY" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:55:26.099Z", - "uniqueQualifier": "-8590873199370021925", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9itWsUAhngzp_3_D8VeSlI8YuDg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_OR_NAMED_PARTIES" - }, - { - "name": "NEW_VALUE", - "value": "NAMED_PARTIES_ONLY" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:47:49.454Z", - "uniqueQualifier": "-8709349504202426632", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ghxviKdkfUPFtU3TMZoxFaSLYbQ\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:47:20.159Z", - "uniqueQualifier": "-8298476870320784478", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Y9gPXtlcVa394pMy6DQtXvj9tr4\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:46:14.186Z", - "uniqueQualifier": "-7761367611665967694", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VTOPBRNjKcsTVvRAXxWm4YDz5Qs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:44:27.074Z", - "uniqueQualifier": "-6775056335327719702", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yBCCIKK2kZSJn3XJFMNTsR8x538\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:38:29.520Z", - "uniqueQualifier": "-4863717126396739868", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JfA3ndBTmF0baZyKKVMvxu_6lN0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:36:07.387Z", - "uniqueQualifier": "-4783889702746143208", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/y8J-FjAkrn7ztQ9AqyzAh8A3ctE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:35:16.991Z", - "uniqueQualifier": "-7151771568778898868", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5-5lvUKuHodd4sgbdc3cZJmCYFg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ANONYMOUS_PREVIEW" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:34:30.609Z", - "uniqueQualifier": "-6696583487931856173", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gfrJxMdny0ZKYD2c0oU6K2W3_m0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:33:36.491Z", - "uniqueQualifier": "-7581744417081138690", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KUYy0C48mJdiMb2NzZ8Q39835G8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:33:03.086Z", - "uniqueQualifier": "-5773916207317160148", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Q-o1UwqxQCF_hab73_Yk0FhVgu4\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:32:34.115Z", - "uniqueQualifier": "-7458105903516037383", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e7kdbXGl6meu_vfGJh1Yk8JTVoA\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:27:12.927Z", - "uniqueQualifier": "-7461899653359069920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gAgqBi_CXmVmfeGaTI85-XGuo7I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:21:16.064Z", - "uniqueQualifier": "-7997590581926713789", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Mmyl9WIJTUDY9CrNe1G1huL88Eg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:20:35.793Z", - "uniqueQualifier": "-5920823545359285575", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AWdwjy2SrLEn3ldpIPqsSD_8vq4\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:17:47.026Z", - "uniqueQualifier": "-6722813939434909812", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vnLkNCeVaHl5WquaafIQyhwqgPE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:16:12.878Z", - "uniqueQualifier": "-6930857428333639578", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gEbtQUBQpVvKLpXnJHGm3qIBEsg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:16:00.687Z", - "uniqueQualifier": "-7103386064693520920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Dejk3gH2KVGoS2Dd82vD8NydFdE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:12:12.744Z", - "uniqueQualifier": "-9193161445238497959", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XlHPjXuTH83VTIIL_gmv0N04PSQ\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:11:39.233Z", - "uniqueQualifier": "-8612615594151420338", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dG7Ik7qQaPuz4Sz8nB0-TV_k-q0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Jean Reed" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "DOMAIN_OR_NAMED_PARTIES" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T16:09:43.677Z", - "uniqueQualifier": "-4701204507230431800", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XZ1XkUsulkTHJrVrHO3Et20YGNA\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-14T01:47:05.920Z", - "uniqueQualifier": "-7848404005276707745", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YaTjdWxn01ChMqJUeAkXp3yx-IE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-26T18:45:13.779Z", - "uniqueQualifier": "-5268971205650755426", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hTXDgd857feJYuoC4aNwVdOG1ZM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-26T18:42:43.001Z", - "uniqueQualifier": "-5196397956751072295", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uTtitqfzWGg9cqGGGrbB_OTUw1g\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-26T18:41:44.207Z", - "uniqueQualifier": "-9118608530720037130", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S4D4z_DK1DOlhXdmpS-vt8StDhk\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ANONYMOUS_PREVIEW" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-22T15:40:17.718Z", - "uniqueQualifier": "-8920524531189699478", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_YecVtiw2ItN4hJJxSuni9lEioQ\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-22T15:39:11.905Z", - "uniqueQualifier": "-5438883892112350117", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/SipykWcpAAW9KtuOUTRoT6tkuUA\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ANONYMOUS_PREVIEW" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-22T15:38:31.518Z", - "uniqueQualifier": "-6118674679470423833", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jQmIFm7Gm30QeYrrbSPWXC8DKnE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-22T15:37:53.901Z", - "uniqueQualifier": "-7024383332220076788", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Q7Qoq-mu-6gbXCdISiIqE49mBz4\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-22T13:27:00.523Z", - "uniqueQualifier": "-4960684235765873108", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dgYRNfYfFAThRH08jWEYfu2rgc0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ANONYMOUS_PREVIEW" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-22T13:24:54.154Z", - "uniqueQualifier": "-6056687320584359171", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/eKr0mKdRDYyzKepjoy7Rt5VURp0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-22T13:23:44.111Z", - "uniqueQualifier": "-4940768169283370672", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NN9ixv0X1cn3FSrDXJ9wZkxtba0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T19:07:32.961Z", - "uniqueQualifier": "-9109730953305470166", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Gzd8vQrYqLztudMpHq_i656vI50\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T19:06:18.163Z", - "uniqueQualifier": "-4793765791071697982", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jd3167-aJf0YOgde6YbLUadP27A\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T19:04:05.268Z", - "uniqueQualifier": "-7157175437857319167", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cu4kUq_NQr6kScd0oJykBrFGMhI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "NEW_VALUE", - "value": "DOMAIN_OR_NAMED_PARTIES" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T19:03:53.755Z", - "uniqueQualifier": "-7226852512451538185", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/IXVo7eRs4dY494MmN3s8hV5J-L8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ANONYMOUS_PREVIEW" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T19:02:47.856Z", - "uniqueQualifier": "-6151338593244363287", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JpuJFFmqyXGuleBlSow4stumOD0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T19:02:21.006Z", - "uniqueQualifier": "-7903207304489064010", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UsFhTqmy4a6Pbo6nyPG60wu4wko\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-25T16:20:08.839Z", - "uniqueQualifier": "-8815463869247913381", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UK37wXu2KauqCu3YBwYtYNfFBh8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "ALLOWED" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "DOMAIN_OR_NAMED_PARTIES" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-25T16:13:49.911Z", - "uniqueQualifier": "-8039702271720117601", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ZQ7EN2WiMLQHLnX6CiiylPfeOas\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NAMED_PARTIES_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-25T16:12:10.607Z", - "uniqueQualifier": "-7515679299770511958", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HBhxwhd_X0roteaDeoVW-h1SwDo\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_OR_NAMED_PARTIES" - }, - { - "name": "NEW_VALUE", - "value": "NAMED_PARTIES_ONLY" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-07T19:05:23.561Z", - "uniqueQualifier": "-6700147551241562173", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9N0shNPJIfvwlbrmlQC1BvmD5jw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_DOCS_ADD_ONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-30T13:38:13.025Z", - "uniqueQualifier": "-8276932653988986712", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/h3QEsA3YOlDF8SSp7fH92JhfNYA\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "PEOPLE_WITH_LINK" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-30T13:19:26.754Z", - "uniqueQualifier": "-8765484716300426017", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JZUNG2hYq8quXTFORm2KzS8-y_Q\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "CROSS_DOMAIN_MOVES_BLOCKED" - }, - { - "name": "NEW_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-30T12:52:06.374Z", - "uniqueQualifier": "-4963375480869410544", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RkEASVAa8tKpVyda3-TbkRzPdA4\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-30T12:50:50.744Z", - "uniqueQualifier": "-5489424309964445928", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/g2YflncNQH6p_oW8hvlr80i4VYk\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-30T12:48:25.037Z", - "uniqueQualifier": "-7903259954432837953", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PoBCxs8XlbiGdWhKoFoYzstoe6s\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ANONYMOUS_PREVIEW" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-30T12:45:47.120Z", - "uniqueQualifier": "-6368917975264585180", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/q6UraNRImKUG_Z4AMYvhFSw5578\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:01:19.658Z", - "uniqueQualifier": "-5512031835958223656", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0Dd5_vayBxNrqO5iLkUyoGgOgY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "PEOPLE_WITH_LINK" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:00:30.945Z", - "uniqueQualifier": "-8437627154844585479", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KWS33W6ykxqzdrLL3f5F5qyvsPA\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "PRIVATE" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:59:13.437Z", - "uniqueQualifier": "-5034424549889268676", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/H4esgz7_cCNu1YcHG_LBwbovZUU\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" - }, - { - "name": "NEW_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:52:22.010Z", - "uniqueQualifier": "-7460390437878111573", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bM8iRzZxLBsWUOd-E1PvvRjZHSc\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "CROSS_DOMAIN_MOVES_BLOCKED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:50:52.345Z", - "uniqueQualifier": "-8537245521744072937", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ohb5MjEOBJenO8KTSPIpqjDznZE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" - }, - { - "name": "NEW_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:50:22.458Z", - "uniqueQualifier": "-5472865396707533555", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wh8VA2v4Oqcjua7LJPc87F6rKXw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:49:34.327Z", - "uniqueQualifier": "-5632628409372959926", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pU4Y3MzQLbMoA1aQeCMPNbRpwao\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "NEW_VALUE", - "value": "DOMAIN_OR_NAMED_PARTIES" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:47:18.037Z", - "uniqueQualifier": "-8183805591257310150", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ea0Yy94M7AumynKMVhqX-QqRDBw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ALLOWED" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_OR_NAMED_PARTIES" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:46:42.480Z", - "uniqueQualifier": "-6830170049807294148", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_nN4_cj2zmQXWLxXK6LQjrLAsVo\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_OR_NAMED_PARTIES" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:41:49.439Z", - "uniqueQualifier": "-5666308078769713370", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QCS_KO-MOtjKMoh1FNjt1HfFRe4\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "DOMAIN_OR_NAMED_PARTIES" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "ALLOWED" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:41:29.338Z", - "uniqueQualifier": "-7665661374235159942", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nhUfo0pn7pjdbRXLGX2cX8rMA5Y\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_OR_NAMED_PARTIES" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "OLD_VALUE", - "value": "ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "OLD_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "OLD_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:40:42.483Z", - "uniqueQualifier": "-5277654674290674003", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ozbPSyUxHu9--IwdzY8o_1zM2EY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "DOMAIN_OR_NAMED_PARTIES" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "ALLOWED" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "ANONYMOUS_PREVIEW" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:40:14.526Z", - "uniqueQualifier": "-5638769506005373498", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dr4u45N5rSHBip8BfAnmrQaAdO4\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:39:49.051Z", - "uniqueQualifier": "-9025871940295280478", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YIWLpm7KHVfXhFAeMCjavcnp3uo\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ANONYMOUS_PREVIEW" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:39:12.441Z", - "uniqueQualifier": "-7070790931937106138", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/knEonqhIirkMa-Ps0q5jWhFQW7I\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_OR_NAMED_PARTIES" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:34:44.016Z", - "uniqueQualifier": "-5121197142582492918", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ge7SKNQst14Oq4mREvqrkOyEFeo\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ALLOWED" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:34:05.391Z", - "uniqueQualifier": "-4907359182133969418", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hDwLZhiLtvuJb3sBojvsjoiexi8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:14:50.339Z", - "uniqueQualifier": "-8141534439372853517", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V-Bau1q_nCDmcGsXK2h2wKLAd5U\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:13:56.292Z", - "uniqueQualifier": "-4655805841861063156", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bbyPGHPsQbZH6hr_xFhTiY4D4j8\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:03:05.956Z", - "uniqueQualifier": "-4868175873257672952", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rlqJY4JYULEwEaEwzbjHMX6M0KA\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T20:01:25.354Z", - "uniqueQualifier": "-8480740503864292422", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TEPMZQfg4eKgePZ4vtYURGKrrKA\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_ACCESS_CHECKER_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "DOMAIN_OR_NAMED_PARTIES" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "PUBLISHING_TO_WEB" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T19:55:39.734Z", - "uniqueQualifier": "-5846236110053700048", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7WiZB5lwMi9ThT1C3_DioYKctVo\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ANONYMOUS_PREVIEW" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T19:54:51.150Z", - "uniqueQualifier": "-8687905981791080107", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9UtfaLR71gKDAIwjMIm_fZtsGwY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-24T15:40:51.575Z", - "uniqueQualifier": "-6237580445307781830", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TQKLfECntjms4wgVeWdPES5V03c\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "CROSS_DOMAIN_MOVES_BLOCKED" - }, - { - "name": "NEW_VALUE", - "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-24T15:39:38.983Z", - "uniqueQualifier": "-6270019679899100063", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RpPbuR0JFJcSZOcI8u52w6qpr80\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ANONYMOUS_PREVIEW" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-20T17:04:44.067Z", - "uniqueQualifier": "-8802373587724733056", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/qRQrLFSP-ZLWjm3Iz3wypB91JAM\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T20:57:41.840Z", - "uniqueQualifier": "-8039744564120159915", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9Zt0HZzGkGyHgfzA8t1se4R0df0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T20:37:10.613Z", - "uniqueQualifier": "-8720028330680924411", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jZzv0tbNwXEGEi6bGKZTQGnPLNo\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T20:35:34.237Z", - "uniqueQualifier": "-5564878258928787756", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AIt27npNmDZqbhiddm09rwYmWAE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T20:34:31.440Z", - "uniqueQualifier": "-5426235369298502627", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RuJk9ZmKzpTqBjVBjkZPdX76SIg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ANONYMOUS_PREVIEW" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T20:29:46.167Z", - "uniqueQualifier": "-8040714963875386222", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/U-FeDmlS29F0BfEoJ9Tqw-8ikew\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T20:27:50.538Z", - "uniqueQualifier": "-7676637336093267136", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/IvslrFIBXTLx4lszp4my-6xIJsw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T20:23:43.816Z", - "uniqueQualifier": "-8200569121459815024", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oDGagI18Xy25GRPEkBRzthf9H-U\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T20:18:06.932Z", - "uniqueQualifier": "-8440873117292908500", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ur44ZyhM-EgIlVo3e5UjLZEHAfQ\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T20:15:18.738Z", - "uniqueQualifier": "-8613270469575703332", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/eT16rSRbq3MpSol66M9D8sjvbeI\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T20:09:29.165Z", - "uniqueQualifier": "-5996963305394931086", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xwNIzytGFSxiCJRLPRZ8YLcOtBg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T20:07:02.074Z", - "uniqueQualifier": "-7562367682366519617", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rQfvUGkHvELjsynwvbKuQuXT0DE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-17T19:56:54.345Z", - "uniqueQualifier": "-5937042150028660281", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/J9neS0P-5mtv333WUOgdKkrJ_eE\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ANONYMOUS_PREVIEW" - }, - { - "name": "NEW_VALUE", - "value": "NOT_ALLOWED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-16T16:25:56.029Z", - "uniqueQualifier": "-5260620625849144348", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JLjAwiySXm7VPjls2RjthgPHd2E\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "NOT_ALLOWED" - }, - { - "name": "NEW_VALUE", - "value": "ANONYMOUS_PREVIEW" - } - ] - }, - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - }, - { - "name": "NEW_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-16T16:25:25.030Z", - "uniqueQualifier": "-5506393425974342833", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UaTS6FyYZjr0a2G4B12bxZ8-pFA\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SHARING_OUTSIDE_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "SHARING_ALLOWED_WITH_WARNING" - }, - { - "name": "NEW_VALUE", - "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-14T20:21:29.543Z", - "uniqueQualifier": "-8708570625830120163", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/IXIbCZxYpIB_n5fpAdLkh1kMoIU\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_DOCS_ADD_ONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-14T20:19:59.366Z", - "uniqueQualifier": "-7490931851590830670", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/d2UpNpgLQW7zLi2prwt9N1NrQZ0\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_DOCS_ADD_ONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-14T20:14:05.082Z", - "uniqueQualifier": "-6015589521941302989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rN6lK81xkH-1B-otJvMFtM6D0Ww\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_DOCS_ADD_ONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-14T20:04:39.548Z", - "uniqueQualifier": "-6135864704255532904", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/lGDC_OHVFxqrvdVzcnWVm4MDsWg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_DOCS_ADD_ONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "GROUP_EMAIL", - "value": "doyleamy@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T20:40:30.314Z", - "uniqueQualifier": "-6842087065931857476", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5UBNJVbe0pHEayvPW1h48Rm5G4o\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_DRIVE_APPS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T20:40:19.095Z", - "uniqueQualifier": "-5496998031902079175", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dXAlZF5WKKranBk18hIFEZ1XUNs\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_DRIVE_APPS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T20:39:54.207Z", - "uniqueQualifier": "-7050431564971038141", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tVa0CKql1_Ah5FCae_b5eiC0Q7k\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_DRIVE_APPS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T20:39:46.208Z", - "uniqueQualifier": "-5975427250558635210", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QQVQ1sjNb66hOEOJKzd3BMVScfY\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_DRIVE_APPS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T20:39:15.294Z", - "uniqueQualifier": "-4932522718611212289", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_Ro4QbfqGwlulJGB5SzaJLDwMSw\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_DRIVE_APPS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T19:59:33.463Z", - "uniqueQualifier": "-5857945453611611749", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uX-vSW2kWjddpDG8bB5ZbYn2vps\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_DRIVE_APPS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T19:56:37.204Z", - "uniqueQualifier": "-8223420323655920486", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mUwJxL6VVaUKvoMWyqzHW3sJr1Y\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_DOCS_ADD_ONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-13T19:54:22.714Z", - "uniqueQualifier": "-8920311772484149483", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/n_XFcd9naFvyK5WIM70UyfrK8tg\"", - "actor": { - "callerType": "USER", - "email": "doyleamy@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "194.120.78.92", - "events": [ - { - "type": "DOCS_SETTINGS", - "name": "CHANGE_DOCS_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_DOCS_ADD_ONS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Charles Shea" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - } - ] - }, - "gmail_logs": { - "items": [ - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T16:27:46.008Z", - "uniqueQualifier": "-8848929114132654231", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zkqZNgX_KNWq0_2-Fzg28Md4p44\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto is_empty" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T16:21:31.290Z", - "uniqueQualifier": "-8832547985086975437", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6gAEBVgM5pv0YlAcMKgaI_bEbX8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto is_empty" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T16:17:03.137Z", - "uniqueQualifier": "-7992347785600499742", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/lBovwiFYmcRkfGUtqvUtKdkupgY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto is_empty" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T16:15:43.685Z", - "uniqueQualifier": "-5071910517359774934", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bHKH5zu-6g7eyc29U0MP2o_U2fM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto is_empty" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-10T22:14:36.427Z", - "uniqueQualifier": "-8529049152175194588", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OsohTS-7ttLaHyxQ2NpnV1gMPWU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto is_empty" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-09T23:51:29.928Z", - "uniqueQualifier": "-6964519439010196413", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/emdklHZ0C1FVbg3nwhRcz1_xFq8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto is_empty" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-09T23:50:57.451Z", - "uniqueQualifier": "-5191076915310136317", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tVgtU702r15E6-2meyu4HvC2YNI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" - }, - { - "name": "OLD_VALUE", - "value": "[188.150.109.63]" - }, - { - "name": "NEW_VALUE", - "value": "[188.150.109.63/24, 188.150.109.63]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-09T23:50:07.583Z", - "uniqueQualifier": "-7434000845670004900", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/poScMPYR2PmJPO6gEdtUptr3Swo\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto is_empty" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T17:38:56.782Z", - "uniqueQualifier": "-5887092291182430158", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_VwDnb1WSwQPbUlhXMnRAFFYmWo\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto is_empty" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T15:59:32.459Z", - "uniqueQualifier": "-8733976945830710318", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RskGutc-vrG8CSGBTxNUu_YolBU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto is_empty" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T15:48:49.723Z", - "uniqueQualifier": "-9189739910024391630", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ZuEdnjBrv_o3oxNuqsaUAszZ7Qs\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto is_empty" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T15:47:24.312Z", - "uniqueQualifier": "-7837441471108441253", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/icy_IIE0ngNCt7uJu4jW7lFhIZA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" - }, - { - "name": "OLD_VALUE", - "value": "[188.150.109.63, 188.150.109.63]" - }, - { - "name": "NEW_VALUE", - "value": "[188.150.109.63]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:38:57.400Z", - "uniqueQualifier": "-4689387399652934261", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DGzJXkMGJ7QnfWqYINhUwj2zPac\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AttachmentDeepScanningSettingsProto deep_scanning_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:38:09.730Z", - "uniqueQualifier": "-6178355671728924674", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/f3WvM0cBpdA0AkomA-Zr6sAUmZo\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AttachmentDeepScanningSettingsProto deep_scanning_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:33:37.078Z", - "uniqueQualifier": "-8501308143648809297", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/fhLu426_ZYb9-NmHiUAGv41FjEg\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:33:00.743Z", - "uniqueQualifier": "-6797513966381536657", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/LpBXx-ldZAqd8Vdph5YZSXWQO9w\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:32:01.828Z", - "uniqueQualifier": "-8657803367078535094", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/57X9Z1BEwULxe_ZRnLQ8A59ZLbA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto is_empty" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:25:03.455Z", - "uniqueQualifier": "-7928851297968379062", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8UtLhvUSPQu-tX4KwWzsdIxpGiA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "OutOfDomainWarningProto disable_untrusted_recipient_warning" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:24:29.227Z", - "uniqueQualifier": "-8945918429208891878", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/La1FcpUvppAQancLEPv5NhE2FT0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "OutOfDomainWarningProto disable_untrusted_recipient_warning" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:36:53.155Z", - "uniqueQualifier": "-8371955607249771398", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CiTCyailzz3mIxPys-JIjeyQ1Ao\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:36:04.917Z", - "uniqueQualifier": "-7947649179680383686", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wRvhj4DhiTFR6_WZ-Pv-b08vBeE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:36:04.917Z", - "uniqueQualifier": "-7947649179680383686", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wRvhj4DhiTFR6_WZ-Pv-b08vBeE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:36:04.917Z", - "uniqueQualifier": "-7947649179680383686", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wRvhj4DhiTFR6_WZ-Pv-b08vBeE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:27:30.529Z", - "uniqueQualifier": "-7663915504418701169", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EAMY99ZoaT1OVdpevYhuoWnhG5A\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:27:30.529Z", - "uniqueQualifier": "-7663915504418701169", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EAMY99ZoaT1OVdpevYhuoWnhG5A\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:27:30.529Z", - "uniqueQualifier": "-7663915504418701169", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EAMY99ZoaT1OVdpevYhuoWnhG5A\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:15.033Z", - "uniqueQualifier": "-6919142310536553003", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DsEu-OY7y-kKxxV47fD4dDk_54g\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:18:31.883Z", - "uniqueQualifier": "-7585817562221830446", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AmOHFS2oKgsTZ_wbAnzgVY4Py1o\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:17:14.337Z", - "uniqueQualifier": "-5105884156652031705", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nirVI_zK3-HddAEWTPD7R-BlYHQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:17:14.337Z", - "uniqueQualifier": "-5105884156652031705", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nirVI_zK3-HddAEWTPD7R-BlYHQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:16:22.327Z", - "uniqueQualifier": "-7980295643510854367", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4HBSrP7vUUH0nN-M-sP2d9ITms4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:16:22.327Z", - "uniqueQualifier": "-7980295643510854367", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4HBSrP7vUUH0nN-M-sP2d9ITms4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:16:22.327Z", - "uniqueQualifier": "-7980295643510854367", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4HBSrP7vUUH0nN-M-sP2d9ITms4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:15:43.912Z", - "uniqueQualifier": "-6158164907853884831", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/H6PeKvfXg54VsdY5tO07jAAdGA8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:15:43.912Z", - "uniqueQualifier": "-6158164907853884831", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/H6PeKvfXg54VsdY5tO07jAAdGA8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:15:08.713Z", - "uniqueQualifier": "-6216704183880669864", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cT41juAnkY_R5ZmfmQmXFXHFN9U\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:14:36.151Z", - "uniqueQualifier": "-8396277888756754417", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BBCWy5_c2VwtqlSZohB5SsTE5A\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:14:36.151Z", - "uniqueQualifier": "-8396277888756754417", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BBCWy5_c2VwtqlSZohB5SsTE5A\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:14:36.151Z", - "uniqueQualifier": "-8396277888756754417", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BBCWy5_c2VwtqlSZohB5SsTE5A\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:05:53.099Z", - "uniqueQualifier": "-8323172966416666830", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dTBcqvFsWfErHsCaQ6W6fDbPQdQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:05:53.099Z", - "uniqueQualifier": "-8323172966416666830", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dTBcqvFsWfErHsCaQ6W6fDbPQdQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:04:11.075Z", - "uniqueQualifier": "-7030839477096046416", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Vl_4ofoHUm6jJQbRR6EFt1k0L4E\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:04:11.075Z", - "uniqueQualifier": "-7030839477096046416", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Vl_4ofoHUm6jJQbRR6EFt1k0L4E\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:01:04.362Z", - "uniqueQualifier": "-7836828524087489632", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/onugfAERSg1qwq5cdJgiu4CxqHY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T18:59:35.384Z", - "uniqueQualifier": "-8659252123438030504", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FltRrmaeigQLJO6g95rohQD2lxc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T18:58:52.811Z", - "uniqueQualifier": "-7161697552967858524", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ULvy6MQzX0VWVVgxXhb9xMgGKFM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:25:13.793Z", - "uniqueQualifier": "-5400935928799441712", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nQlmNVu3Us9EJWEPHXpQts8hH_g\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:24:13.352Z", - "uniqueQualifier": "-6171582183769986444", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zc4c8Zl-EhtrrZphE-D0IaoAoT0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:23:50.761Z", - "uniqueQualifier": "-4782525883875633719", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C5p05NSn_tZePUUDkNdzADQSQbA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:19:20.318Z", - "uniqueQualifier": "-4731115240746192341", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jX93gjqaQ1jeksRPykL_S-ll2CY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:17:43.694Z", - "uniqueQualifier": "-6742432895034531457", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VdwErl8q0-RT1kxz2VWQnFDn5DA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:16:18.374Z", - "uniqueQualifier": "-7957734652107161728", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pXpDKtv_JTYdzRcLoYeOMNpIOoQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:12:23.983Z", - "uniqueQualifier": "-5235624308351538119", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7fM0O_x-CeVy_rVr3KLHKhGgUJ8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:12:23.983Z", - "uniqueQualifier": "-5235624308351538119", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7fM0O_x-CeVy_rVr3KLHKhGgUJ8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:11:41.471Z", - "uniqueQualifier": "-6519118360921163766", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KemrEBKIn6coHra08M9AR3tBfRU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:11:41.471Z", - "uniqueQualifier": "-6519118360921163766", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KemrEBKIn6coHra08M9AR3tBfRU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:09:18.722Z", - "uniqueQualifier": "-6109225818939049868", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O70UKtXcAODSYMyHEXf6n7LRPuE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:07:22.449Z", - "uniqueQualifier": "-5825128916415144628", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/G9AwnNoYZ62yw5KAKG1AEEqfOFw\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:03:03.711Z", - "uniqueQualifier": "-8412557248197588305", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NjnHJzSxIcjcUNmZsUT6emKodNk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:02:29.805Z", - "uniqueQualifier": "-5851802406607686631", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S5ANOHFPItRrlP_DCrncsjwHHWY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:02:29.805Z", - "uniqueQualifier": "-5851802406607686631", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S5ANOHFPItRrlP_DCrncsjwHHWY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T19:54:57.368Z", - "uniqueQualifier": "-5680635710674996360", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YIyCoigkeVnJtioojNfIejF9QJY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-11T02:06:06.231Z", - "uniqueQualifier": "-8062931828956841656", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kBAZobmhrEIq9b52zVcqS4zDpTw\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-11T02:04:42.418Z", - "uniqueQualifier": "-7627585719562007910", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mia8tlJTxJ6zc97yiWcIbGJWBA4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-11T00:08:13.113Z", - "uniqueQualifier": "-5653375285689313670", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/29UkwhcLRPKfikP5CJ1kOU_vBb8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-11T00:06:10.386Z", - "uniqueQualifier": "-8191435850033108527", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yrvZzggEds6CE6M8-tmQQ0Zygjg\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-11T00:05:21.622Z", - "uniqueQualifier": "-9040069489614231845", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CbmXKVGIMQ7LAnYoWY3MURn0q-c\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-11T00:00:13.604Z", - "uniqueQualifier": "-5997613912720111457", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JAiT2QgbTJPqUuj02c4QXAUARtw\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T23:59:11.540Z", - "uniqueQualifier": "-5763607295736349617", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/SobjtCcUzRUuhTRTr5KTtD36Anw\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T23:59:04.105Z", - "uniqueQualifier": "-8467452874338805225", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mOJWPDGt25EgTf_ADtaZXtJFKXI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T23:58:17.294Z", - "uniqueQualifier": "-7199836013981546899", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dHw6tqpK9WONfzyFncypyAkuS-4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T23:56:59.298Z", - "uniqueQualifier": "-9196738379135788737", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XkXwFrYM2fhr6O6U7rhSKdbcVgE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T23:56:59.298Z", - "uniqueQualifier": "-9196738379135788737", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XkXwFrYM2fhr6O6U7rhSKdbcVgE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T23:56:59.298Z", - "uniqueQualifier": "-9196738379135788737", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XkXwFrYM2fhr6O6U7rhSKdbcVgE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T23:54:10.070Z", - "uniqueQualifier": "-5211995576523371879", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bXbUndCK3qnx57bFfnOskJs7aUk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T23:47:42.228Z", - "uniqueQualifier": "-8738869030035506297", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/K0rwpH6BhgXjnd44_dG3i7ExMHc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T23:41:42.833Z", - "uniqueQualifier": "-8398482386462767749", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Pc7_mLIbr1OwdAFWFHya2ViRmQc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-10T23:41:42.833Z", - "uniqueQualifier": "-8398482386462767749", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Pc7_mLIbr1OwdAFWFHya2ViRmQc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-28T22:34:12.578Z", - "uniqueQualifier": "-9182850556781017232", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4wiZi1L1F4mvEV2iXo3MPPLlKCQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-28T22:34:12.578Z", - "uniqueQualifier": "-9182850556781017232", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4wiZi1L1F4mvEV2iXo3MPPLlKCQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-28T22:34:12.578Z", - "uniqueQualifier": "-9182850556781017232", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4wiZi1L1F4mvEV2iXo3MPPLlKCQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-28T22:34:12.578Z", - "uniqueQualifier": "-9182850556781017232", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4wiZi1L1F4mvEV2iXo3MPPLlKCQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-28T22:34:12.578Z", - "uniqueQualifier": "-9182850556781017232", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4wiZi1L1F4mvEV2iXo3MPPLlKCQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-28T21:18:43.765Z", - "uniqueQualifier": "-7590912919710725305", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CawqPiHMpnKkg3RTcNSZHR6aT1Y\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-28T19:14:13.423Z", - "uniqueQualifier": "-8307818036636199840", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mcCPrbdfEF46FLEdLvEI9h2vhKo\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:40:08.349Z", - "uniqueQualifier": "-8368076751569910148", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vwcVAiDsgw4WpDOOmEDlAPfWXIM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:39:53.846Z", - "uniqueQualifier": "-5715036453442913148", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Zy5kQq1vW0n8FDAU9-DSVOoshig\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:39:42.827Z", - "uniqueQualifier": "-6315532632077812227", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mBdu4XWJlXYyiXHYhx5njmWmxsU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "Private groups only" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:38:04.619Z", - "uniqueQualifier": "-4710019258850651884", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jhLBM9LRg1jpMK-GbrgDFMPAVvs\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "NEW_VALUE", - "value": "Private groups only" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:37:52.285Z", - "uniqueQualifier": "-4735039216780775996", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/P8n4OX0hvheuvjV7z3VWRcoA6RA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "Private groups only" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:37:52.285Z", - "uniqueQualifier": "-4735039216780775996", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/P8n4OX0hvheuvjV7z3VWRcoA6RA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "Private groups only" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:35:02.447Z", - "uniqueQualifier": "-6329290811650545738", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_J_XzmN31Ll2Xc9fN7juGvlVALM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-15T20:28:29.703Z", - "uniqueQualifier": "-6613366801859772006", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8HoN2rY5lrbYOoN-e5f_nVDHP5k\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-15T20:28:29.703Z", - "uniqueQualifier": "-6613366801859772006", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8HoN2rY5lrbYOoN-e5f_nVDHP5k\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-15T20:28:29.703Z", - "uniqueQualifier": "-6613366801859772006", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8HoN2rY5lrbYOoN-e5f_nVDHP5k\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-15T20:26:14.487Z", - "uniqueQualifier": "-8027206714913178980", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O5h1XEQp1AOSwmgvcDgG41Pg6Q0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-15T20:26:14.487Z", - "uniqueQualifier": "-8027206714913178980", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O5h1XEQp1AOSwmgvcDgG41Pg6Q0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-15T20:26:14.487Z", - "uniqueQualifier": "-8027206714913178980", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O5h1XEQp1AOSwmgvcDgG41Pg6Q0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T23:56:07.675Z", - "uniqueQualifier": "-6212328187570160412", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cVoMaGDZYhd8PqvpxqJOgUUrMKo\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T22:06:48.770Z", - "uniqueQualifier": "-4847195203939570330", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/52-GQMcZSkENhW9ho4sTlDgzhfU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:49:16.737Z", - "uniqueQualifier": "-9013844798716414352", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ma3XAPMYq2IVzLGJiSkT3CD1R5E\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:49:16.737Z", - "uniqueQualifier": "-9013844798716414352", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ma3XAPMYq2IVzLGJiSkT3CD1R5E\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:48:30.595Z", - "uniqueQualifier": "-7661033378720535879", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hx5kz16IU_mer_3UyQmAWFA5rcg\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:48:30.595Z", - "uniqueQualifier": "-7661033378720535879", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hx5kz16IU_mer_3UyQmAWFA5rcg\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:48:30.595Z", - "uniqueQualifier": "-7661033378720535879", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hx5kz16IU_mer_3UyQmAWFA5rcg\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:48:30.595Z", - "uniqueQualifier": "-7661033378720535879", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hx5kz16IU_mer_3UyQmAWFA5rcg\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:48:30.595Z", - "uniqueQualifier": "-7661033378720535879", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hx5kz16IU_mer_3UyQmAWFA5rcg\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:48:30.595Z", - "uniqueQualifier": "-7661033378720535879", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hx5kz16IU_mer_3UyQmAWFA5rcg\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:48:16.275Z", - "uniqueQualifier": "-7036895913410872704", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vCM12UYpR_ogBowiir5q1JLEmkU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:47:34.403Z", - "uniqueQualifier": "-8423045455482383644", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CcppBowJpipbEQeGKrPbvfis19Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:47:34.403Z", - "uniqueQualifier": "-8423045455482383644", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CcppBowJpipbEQeGKrPbvfis19Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:47:34.403Z", - "uniqueQualifier": "-8423045455482383644", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CcppBowJpipbEQeGKrPbvfis19Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:47:34.403Z", - "uniqueQualifier": "-8423045455482383644", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CcppBowJpipbEQeGKrPbvfis19Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:47:34.403Z", - "uniqueQualifier": "-8423045455482383644", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CcppBowJpipbEQeGKrPbvfis19Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:35:49.525Z", - "uniqueQualifier": "-7098640341643906972", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0k0_4obIHn-chd1Yw3spwz0un3w\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:35:49.525Z", - "uniqueQualifier": "-7098640341643906972", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0k0_4obIHn-chd1Yw3spwz0un3w\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:35:49.525Z", - "uniqueQualifier": "-7098640341643906972", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0k0_4obIHn-chd1Yw3spwz0un3w\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T21:35:49.525Z", - "uniqueQualifier": "-7098640341643906972", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0k0_4obIHn-chd1Yw3spwz0un3w\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T18:32:39.558Z", - "uniqueQualifier": "-9072199906074559768", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/drgyRVIMuDhO-mShcSlc25SztCA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T18:32:27.661Z", - "uniqueQualifier": "-5163174303074193628", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/224f5ivFEyb90ZYX8OBpLZEwPmU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:57:28.690Z", - "uniqueQualifier": "-8619184176513666546", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UAvJqxcqS0rqVdYKJzWzyzouucY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:55:27.286Z", - "uniqueQualifier": "-8391640015749448948", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mwLUUTUyUKZaCpCTUZVzFx8DI-I\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:55:18.106Z", - "uniqueQualifier": "-7594954669204929315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/h89as5h5kR5DEmOnDJMG2FtpEno\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:42:22.765Z", - "uniqueQualifier": "-7292163148509490394", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jyqz5AN4bS1kOswLCH0fdO6GZkk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:42:22.765Z", - "uniqueQualifier": "-7292163148509490394", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jyqz5AN4bS1kOswLCH0fdO6GZkk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:40:33.581Z", - "uniqueQualifier": "-6530383413477844928", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DJxz7JDE59LvIfHdOhexRzhWu2k\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:40:33.581Z", - "uniqueQualifier": "-6530383413477844928", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DJxz7JDE59LvIfHdOhexRzhWu2k\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:40:33.581Z", - "uniqueQualifier": "-6530383413477844928", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DJxz7JDE59LvIfHdOhexRzhWu2k\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:40:33.581Z", - "uniqueQualifier": "-6530383413477844928", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DJxz7JDE59LvIfHdOhexRzhWu2k\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T20:27:18.951Z", - "uniqueQualifier": "-8924270847023180522", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pAyIalrkl_xE0shwLfNNtVybn7I\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AttachmentDeepScanningSettingsProto deep_scanning_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T20:26:13.950Z", - "uniqueQualifier": "-5851204968140537852", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Pa_lNzARuZGAi7TjsZh7kTbfewA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "AttachmentDeepScanningSettingsProto deep_scanning_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T20:21:18.027Z", - "uniqueQualifier": "-5693806913680720351", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/LgWtAwpIUpW4ruUebN-bDTV02HM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T20:20:20.379Z", - "uniqueQualifier": "-9102688400703257081", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bgBfHAbGTvN2j7U5FGmbhbnKfIs\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:39:04.827Z", - "uniqueQualifier": "-5872911294517334101", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0gX_GVAz4HcRZP5ECdZRTbDsxr0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:34:09.372Z", - "uniqueQualifier": "-5971455787616208563", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o8L8cm7u8Zhu_q0LFqAMtsmGzDM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:34:09.372Z", - "uniqueQualifier": "-5971455787616208563", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o8L8cm7u8Zhu_q0LFqAMtsmGzDM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:34:09.372Z", - "uniqueQualifier": "-5971455787616208563", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o8L8cm7u8Zhu_q0LFqAMtsmGzDM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:34:09.372Z", - "uniqueQualifier": "-5971455787616208563", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o8L8cm7u8Zhu_q0LFqAMtsmGzDM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T16:27:46.008Z", - "uniqueQualifier": "-8848929114132654231", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-6dwaguA2VPVo-X2QPHGjZcfh-A\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" - }, - { - "name": "NEW_VALUE", - "value": "[188.150.109.63/24]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T16:17:03.137Z", - "uniqueQualifier": "-7992347785600499742", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5idxVzjGtbHeStWN0K15PtAq6No\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" - }, - { - "name": "NEW_VALUE", - "value": "[188.150.109.63/24]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-10T22:14:36.427Z", - "uniqueQualifier": "-8529049152175194588", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/veGdJdx3GLas_Z6eel7KWHfIWbc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" - }, - { - "name": "NEW_VALUE", - "value": "[188.150.109.63/24]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-09T23:50:07.583Z", - "uniqueQualifier": "-7434000845670004900", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HszCeuS4sdBgisOo6NUiP9-qPRA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" - }, - { - "name": "NEW_VALUE", - "value": "[188.150.109.63]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T15:59:32.459Z", - "uniqueQualifier": "-8733976945830710318", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VxfeI1N_OhS6wTG3_CvZCgYjYLE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" - }, - { - "name": "NEW_VALUE", - "value": "[188.150.109.63]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:36:14.424Z", - "uniqueQualifier": "-7768235018267311352", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bWVTdTV6tgycfGz-F6KYwF3ZDOQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "AttachmentDeepScanningSettingsProto deep_scanning_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:34:20.495Z", - "uniqueQualifier": "-5928946132581627170", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Htrqp_RxacOSnH1qctWUgDIWHCc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:32:01.828Z", - "uniqueQualifier": "-8657803367078535094", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VrvMhvtTEvKfnYOER1qy7KdFbHY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" - }, - { - "name": "NEW_VALUE", - "value": "[188.150.109.63, 188.150.109.63]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:28:24.350Z", - "uniqueQualifier": "-5693871321633820493", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tdPcINJrcUGs5QdhU5VeUYRI2Qs\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto is_empty" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:23:45.318Z", - "uniqueQualifier": "-5932092697097708568", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/WwJfghaQELpCTF6hAmrsMJmoANY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "OutOfDomainWarningProto disable_untrusted_recipient_warning" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:30:11.878Z", - "uniqueQualifier": "-5403239592848814941", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:19:34.544Z", - "uniqueQualifier": "-5869987573009452283", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:06:42.182Z", - "uniqueQualifier": "-5181161422670486464", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:26.817Z", - "uniqueQualifier": "-6838915869810017410", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:00:24.497Z", - "uniqueQualifier": "-4822045421791168466", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "NEW_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:24:38.659Z", - "uniqueQualifier": "-6280635170250231145", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uP-7yxgOxUtD_VP2Z-w-V0j8UbY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:24:38.659Z", - "uniqueQualifier": "-6280635170250231145", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uP-7yxgOxUtD_VP2Z-w-V0j8UbY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:24:38.659Z", - "uniqueQualifier": "-6280635170250231145", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uP-7yxgOxUtD_VP2Z-w-V0j8UbY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:24:38.659Z", - "uniqueQualifier": "-6280635170250231145", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uP-7yxgOxUtD_VP2Z-w-V0j8UbY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:24:38.659Z", - "uniqueQualifier": "-6280635170250231145", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uP-7yxgOxUtD_VP2Z-w-V0j8UbY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:23:00.783Z", - "uniqueQualifier": "-8410493281186321252", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-txnT5pL5pbl5za9WAYswK5koLM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:23:00.783Z", - "uniqueQualifier": "-8410493281186321252", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-txnT5pL5pbl5za9WAYswK5koLM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:23:00.783Z", - "uniqueQualifier": "-8410493281186321252", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-txnT5pL5pbl5za9WAYswK5koLM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:23:00.783Z", - "uniqueQualifier": "-8410493281186321252", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-txnT5pL5pbl5za9WAYswK5koLM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:23:00.783Z", - "uniqueQualifier": "-8410493281186321252", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-txnT5pL5pbl5za9WAYswK5koLM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:17:03.192Z", - "uniqueQualifier": "-6153425662217819320", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XjNiZ3WYu0Cxu7K6nu3mV81gm8o\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:17:03.192Z", - "uniqueQualifier": "-6153425662217819320", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XjNiZ3WYu0Cxu7K6nu3mV81gm8o\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:17:03.192Z", - "uniqueQualifier": "-6153425662217819320", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XjNiZ3WYu0Cxu7K6nu3mV81gm8o\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:17:03.192Z", - "uniqueQualifier": "-6153425662217819320", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XjNiZ3WYu0Cxu7K6nu3mV81gm8o\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:17:03.192Z", - "uniqueQualifier": "-6153425662217819320", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XjNiZ3WYu0Cxu7K6nu3mV81gm8o\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:09:10.404Z", - "uniqueQualifier": "-9173648628893265597", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:09:10.404Z", - "uniqueQualifier": "-9173648628893265597", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:09:10.404Z", - "uniqueQualifier": "-9173648628893265597", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:09:10.404Z", - "uniqueQualifier": "-9173648628893265597", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:09:10.404Z", - "uniqueQualifier": "-9173648628893265597", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:09:10.404Z", - "uniqueQualifier": "-9173648628893265597", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:09:10.404Z", - "uniqueQualifier": "-9173648628893265597", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:09:10.404Z", - "uniqueQualifier": "-9173648628893265597", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:09:10.404Z", - "uniqueQualifier": "-9173648628893265597", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:09:10.404Z", - "uniqueQualifier": "-9173648628893265597", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:09:10.404Z", - "uniqueQualifier": "-9173648628893265597", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:18.667Z", - "uniqueQualifier": "-4813725012331975988", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:18.667Z", - "uniqueQualifier": "-4813725012331975988", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:18.667Z", - "uniqueQualifier": "-4813725012331975988", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:18.667Z", - "uniqueQualifier": "-4813725012331975988", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:18.667Z", - "uniqueQualifier": "-4813725012331975988", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:18.667Z", - "uniqueQualifier": "-4813725012331975988", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:18.667Z", - "uniqueQualifier": "-4813725012331975988", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:18.667Z", - "uniqueQualifier": "-4813725012331975988", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:18.667Z", - "uniqueQualifier": "-4813725012331975988", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:18.667Z", - "uniqueQualifier": "-4813725012331975988", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:18.667Z", - "uniqueQualifier": "-4813725012331975988", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:05:10.738Z", - "uniqueQualifier": "-5742299448771648899", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:05:10.738Z", - "uniqueQualifier": "-5742299448771648899", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:05:10.738Z", - "uniqueQualifier": "-5742299448771648899", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:05:10.738Z", - "uniqueQualifier": "-5742299448771648899", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:05:10.738Z", - "uniqueQualifier": "-5742299448771648899", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:05:10.738Z", - "uniqueQualifier": "-5742299448771648899", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:05:10.738Z", - "uniqueQualifier": "-5742299448771648899", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:05:10.738Z", - "uniqueQualifier": "-5742299448771648899", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:05:10.738Z", - "uniqueQualifier": "-5742299448771648899", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:05:10.738Z", - "uniqueQualifier": "-5742299448771648899", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:05:10.738Z", - "uniqueQualifier": "-5742299448771648899", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:57:17.142Z", - "uniqueQualifier": "-5133325816919867532", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:57:17.142Z", - "uniqueQualifier": "-5133325816919867532", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:57:17.142Z", - "uniqueQualifier": "-5133325816919867532", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:57:17.142Z", - "uniqueQualifier": "-5133325816919867532", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:57:17.142Z", - "uniqueQualifier": "-5133325816919867532", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:57:17.142Z", - "uniqueQualifier": "-5133325816919867532", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:57:17.142Z", - "uniqueQualifier": "-5133325816919867532", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:57:17.142Z", - "uniqueQualifier": "-5133325816919867532", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:57:17.142Z", - "uniqueQualifier": "-5133325816919867532", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:57:17.142Z", - "uniqueQualifier": "-5133325816919867532", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:57:17.142Z", - "uniqueQualifier": "-5133325816919867532", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:57:17.142Z", - "uniqueQualifier": "-5133325816919867532", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:32:36.160Z", - "uniqueQualifier": "-7984798595345208026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:32:36.160Z", - "uniqueQualifier": "-7984798595345208026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:32:36.160Z", - "uniqueQualifier": "-7984798595345208026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:32:36.160Z", - "uniqueQualifier": "-7984798595345208026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:32:36.160Z", - "uniqueQualifier": "-7984798595345208026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:32:36.160Z", - "uniqueQualifier": "-7984798595345208026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:32:36.160Z", - "uniqueQualifier": "-7984798595345208026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:32:36.160Z", - "uniqueQualifier": "-7984798595345208026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:32:36.160Z", - "uniqueQualifier": "-7984798595345208026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:32:36.160Z", - "uniqueQualifier": "-7984798595345208026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:32:36.160Z", - "uniqueQualifier": "-7984798595345208026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:32:36.160Z", - "uniqueQualifier": "-7984798595345208026", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "NEW_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "NEW_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "NEW_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "NEW_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "NEW_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "NEW_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T16:21:31.290Z", - "uniqueQualifier": "-8832547985086975437", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/H5MRrQL0btJjjO3h629LEuNBypk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" - }, - { - "name": "OLD_VALUE", - "value": "[188.150.109.63/24]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T16:15:43.685Z", - "uniqueQualifier": "-5071910517359774934", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tO4FyB67JHXDFRrxZggtz3j3J0I\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" - }, - { - "name": "OLD_VALUE", - "value": "[188.150.109.63/24]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-09T23:51:29.928Z", - "uniqueQualifier": "-6964519439010196413", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Lv_nNNSvL93aKGJfMC8q_9qDfYk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" - }, - { - "name": "OLD_VALUE", - "value": "[188.150.109.63/24, 188.150.109.63]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T17:38:56.782Z", - "uniqueQualifier": "-5887092291182430158", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/y5pkB6XV24VdtKy8uVlxwt-IR8k\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" - }, - { - "name": "OLD_VALUE", - "value": "[188.150.109.63]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-08T15:48:49.723Z", - "uniqueQualifier": "-9189739910024391630", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yGMkmLKj4hDYPOx6_CDswZ3b5kg\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" - }, - { - "name": "OLD_VALUE", - "value": "[188.150.109.63]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:36:57.469Z", - "uniqueQualifier": "-7892336497755704961", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-cYo4vR079yMQSaXRca-uRIiav4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "AttachmentDeepScanningSettingsProto deep_scanning_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:34:57.946Z", - "uniqueQualifier": "-7034005062571081223", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uwwqKj5qFmJ0j0YxUHLDmZf1hug\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:28:24.350Z", - "uniqueQualifier": "-5693871321633820493", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xQavg5YlFpBPT4NcUn6jHPRAeww\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" - }, - { - "name": "OLD_VALUE", - "value": "[188.150.109.63]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:26:08.537Z", - "uniqueQualifier": "-9031234566324114665", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UooY5c0mr93sI3LkOCBRYYrAIyo\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "OutOfDomainWarningProto disable_untrusted_recipient_warning" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:31:17.433Z", - "uniqueQualifier": "-8832271997982293315", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:24:31.557Z", - "uniqueQualifier": "-6613641808412772920", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:07:42.373Z", - "uniqueQualifier": "-8542032566009871716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:34.116Z", - "uniqueQualifier": "-8012812558324558989", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:02:21.926Z", - "uniqueQualifier": "-5077751536906355112", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against spoofing of employee names action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for groups spoofing" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" - }, - { - "name": "OLD_VALUE", - "value": "All groups" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:23:42.525Z", - "uniqueQualifier": "-5846774223510872756", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kvUEgXIDgdX0G3k3fX3CXZO50YI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:23:42.525Z", - "uniqueQualifier": "-5846774223510872756", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kvUEgXIDgdX0G3k3fX3CXZO50YI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:23:42.525Z", - "uniqueQualifier": "-5846774223510872756", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kvUEgXIDgdX0G3k3fX3CXZO50YI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:23:42.525Z", - "uniqueQualifier": "-5846774223510872756", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kvUEgXIDgdX0G3k3fX3CXZO50YI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:23:42.525Z", - "uniqueQualifier": "-5846774223510872756", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kvUEgXIDgdX0G3k3fX3CXZO50YI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:18:10.708Z", - "uniqueQualifier": "-7551979130158269815", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FbFoO6oTRMLu-P2AHD05ODvfTYM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:18:10.708Z", - "uniqueQualifier": "-7551979130158269815", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FbFoO6oTRMLu-P2AHD05ODvfTYM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:18:10.708Z", - "uniqueQualifier": "-7551979130158269815", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FbFoO6oTRMLu-P2AHD05ODvfTYM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:18:10.708Z", - "uniqueQualifier": "-7551979130158269815", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FbFoO6oTRMLu-P2AHD05ODvfTYM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:18:10.708Z", - "uniqueQualifier": "-7551979130158269815", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FbFoO6oTRMLu-P2AHD05ODvfTYM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: identify links behind shortened URLs" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety Enable: scan linked images" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Timothy Garcia" - }, - { - "name": "SETTING_NAME", - "value": "Links and external images safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:12:51.227Z", - "uniqueQualifier": "-4787412021313868268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:12:51.227Z", - "uniqueQualifier": "-4787412021313868268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:12:51.227Z", - "uniqueQualifier": "-4787412021313868268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:12:51.227Z", - "uniqueQualifier": "-4787412021313868268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:12:51.227Z", - "uniqueQualifier": "-4787412021313868268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:12:51.227Z", - "uniqueQualifier": "-4787412021313868268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:12:51.227Z", - "uniqueQualifier": "-4787412021313868268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:12:51.227Z", - "uniqueQualifier": "-4787412021313868268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:12:51.227Z", - "uniqueQualifier": "-4787412021313868268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:12:51.227Z", - "uniqueQualifier": "-4787412021313868268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:12:51.227Z", - "uniqueQualifier": "-4787412021313868268", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:08:47.280Z", - "uniqueQualifier": "-8090481736071998183", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:08:47.280Z", - "uniqueQualifier": "-8090481736071998183", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:08:47.280Z", - "uniqueQualifier": "-8090481736071998183", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:08:47.280Z", - "uniqueQualifier": "-8090481736071998183", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:08:47.280Z", - "uniqueQualifier": "-8090481736071998183", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:08:47.280Z", - "uniqueQualifier": "-8090481736071998183", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:08:47.280Z", - "uniqueQualifier": "-8090481736071998183", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:08:47.280Z", - "uniqueQualifier": "-8090481736071998183", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:08:47.280Z", - "uniqueQualifier": "-8090481736071998183", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:08:47.280Z", - "uniqueQualifier": "-8090481736071998183", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:08:47.280Z", - "uniqueQualifier": "-8090481736071998183", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:07.787Z", - "uniqueQualifier": "-8423564239481711633", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:07.787Z", - "uniqueQualifier": "-8423564239481711633", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:07.787Z", - "uniqueQualifier": "-8423564239481711633", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:07.787Z", - "uniqueQualifier": "-8423564239481711633", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:07.787Z", - "uniqueQualifier": "-8423564239481711633", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:07.787Z", - "uniqueQualifier": "-8423564239481711633", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:07.787Z", - "uniqueQualifier": "-8423564239481711633", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:07.787Z", - "uniqueQualifier": "-8423564239481711633", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:07.787Z", - "uniqueQualifier": "-8423564239481711633", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:07.787Z", - "uniqueQualifier": "-8423564239481711633", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:06:07.787Z", - "uniqueQualifier": "-8423564239481711633", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:03:44.593Z", - "uniqueQualifier": "-8919713994614076952", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:03:44.593Z", - "uniqueQualifier": "-8919713994614076952", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:03:44.593Z", - "uniqueQualifier": "-8919713994614076952", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:03:44.593Z", - "uniqueQualifier": "-8919713994614076952", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:03:44.593Z", - "uniqueQualifier": "-8919713994614076952", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:03:44.593Z", - "uniqueQualifier": "-8919713994614076952", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:03:44.593Z", - "uniqueQualifier": "-8919713994614076952", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:03:44.593Z", - "uniqueQualifier": "-8919713994614076952", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:03:44.593Z", - "uniqueQualifier": "-8919713994614076952", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:03:44.593Z", - "uniqueQualifier": "-8919713994614076952", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:03:44.593Z", - "uniqueQualifier": "-8919713994614076952", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T20:03:44.593Z", - "uniqueQualifier": "-8919713994614076952", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-18T19:11:53.488Z", - "uniqueQualifier": "-6196200878245814300", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tK39Q84YGM4xVU87Of2oTou5xjw\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:43:44.637Z", - "uniqueQualifier": "-4899672193862172621", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:43:44.637Z", - "uniqueQualifier": "-4899672193862172621", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:43:44.637Z", - "uniqueQualifier": "-4899672193862172621", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:43:44.637Z", - "uniqueQualifier": "-4899672193862172621", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:43:44.637Z", - "uniqueQualifier": "-4899672193862172621", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:43:44.637Z", - "uniqueQualifier": "-4899672193862172621", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:43:44.637Z", - "uniqueQualifier": "-4899672193862172621", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:43:44.637Z", - "uniqueQualifier": "-4899672193862172621", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:43:44.637Z", - "uniqueQualifier": "-4899672193862172621", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:43:44.637Z", - "uniqueQualifier": "-4899672193862172621", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:43:44.637Z", - "uniqueQualifier": "-4899672193862172621", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:43:44.637Z", - "uniqueQualifier": "-4899672193862172621", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Encrypted attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Show warning" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection file type whitelist" - }, - { - "name": "OLD_VALUE", - "value": "[txt]" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Anomalous attachment protection setting action" - }, - { - "name": "OLD_VALUE", - "value": "Quarantine" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety" - }, - { - "name": "OLD_VALUE", - "value": "Custom settings" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: automatically enables all future added settings" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Attachment with scripts protection action" - }, - { - "name": "OLD_VALUE", - "value": "Move to spam" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for encrypted attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for script attachments" - }, - { - "name": "OLD_VALUE", - "value": "0" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Quarantine queue for anomalous attachments" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Gmail" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "SETTING_NAME", - "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:53:37.510Z", - "uniqueQualifier": "-5220258981000260472", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/igW5PrINzokKRuUKapl4zALy4QE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_GMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "INBOUND_GATEWAY" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "USER_DEFINED_SETTING_NAME", - "value": "11d32" - }, - { - "name": "SETTING_ENABLED", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:52:21.291Z", - "uniqueQualifier": "-8057593944295039120", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xP4x1uLugnonQK-0f0Lm677XHf0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_GMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "INBOUND_GATEWAY" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "USER_DEFINED_SETTING_NAME", - "value": "11d32" - }, - { - "name": "SETTING_ENABLED", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-05T18:07:58.835Z", - "uniqueQualifier": "-5677155215552662624", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FMpkgZtD1_fsNMzUUyCs5FNj9ng\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_GMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SPAM_CONTROL" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_DESCRIPTION", - "value": "Scuba" - }, - { - "name": "USER_DEFINED_SETTING_NAME", - "value": "6776f" - }, - { - "name": "SETTING_ENABLED", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-05T18:07:08.941Z", - "uniqueQualifier": "-8381009703493294910", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0Yky1P_hl-ymKAitZzOjSZ157aw\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_GMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SPAM_CONTROL" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_DESCRIPTION", - "value": "Scuba" - }, - { - "name": "USER_DEFINED_SETTING_NAME", - "value": "6776f" - }, - { - "name": "SETTING_ENABLED", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-25T17:45:42.903Z", - "uniqueQualifier": "-6801877499305129563", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/L7IzY9CpEI6juacCkaOaPY8jdiY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_GMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "APPROVED_ADDRESS_LIST" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "USER_DEFINED_SETTING_NAME", - "value": "592cd" - }, - { - "name": "SETTING_ENABLED", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-25T17:44:02.082Z", - "uniqueQualifier": "-8747745826320916745", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mOU8c_xGxH9htqIsPfy-5Ur75fA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_GMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SPAM_CONTROL" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_DESCRIPTION", - "value": "Scuba" - }, - { - "name": "USER_DEFINED_SETTING_NAME", - "value": "6776f" - }, - { - "name": "SETTING_ENABLED", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-25T17:42:42.268Z", - "uniqueQualifier": "-7623596039614384795", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/MawPZzruOE_b28Gs9RAW-lFvlkg\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_GMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "SPAM_CONTROL" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_DESCRIPTION", - "value": "Scuba" - }, - { - "name": "USER_DEFINED_SETTING_NAME", - "value": "6776f" - }, - { - "name": "SETTING_ENABLED", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:40:22.466Z", - "uniqueQualifier": "-5545835530076996096", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-RU5zX0wj1hUVMaTDAHrsJxKKt8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_G_SUITE_MARKETPLACE" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "NEW_VALUE", - "value": "3" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:40:14.386Z", - "uniqueQualifier": "-8158670660801576108", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hvkO_0ypO_d2Q_HJi_GPksGKXcg\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_G_SUITE_MARKETPLACE" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "3" - }, - { - "name": "NEW_VALUE", - "value": "2" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:39:14.005Z", - "uniqueQualifier": "-8290323648275442656", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3ioFa-cf1Scs6Ne04RrOOR2iyTQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_G_SUITE_MARKETPLACE" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "2" - }, - { - "name": "NEW_VALUE", - "value": "3" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T23:37:05.652Z", - "uniqueQualifier": "-8762093103530882777", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/L0uSIRCSmyKmXupz6f3sMnnm4Dc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_G_SUITE_MARKETPLACE" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "3" - }, - { - "name": "NEW_VALUE", - "value": "2" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:13:22.480Z", - "uniqueQualifier": "-5462590824006163669", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1ebrZNWrUd4GsBcdb9XrnzuHiTk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "OUTBOUND_RELAY_ENABLED" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:12:39.351Z", - "uniqueQualifier": "-6879918250539439087", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HgK70wJSw5BRdeUFWkTskXAfd60\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "OUTBOUND_RELAY_ENABLED" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:11:57.723Z", - "uniqueQualifier": "-5535752482349833986", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ijN1iEmXEmVRG811PkSOH0LPM4E\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "OUTBOUND_RELAY_ENABLED" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:09:46.603Z", - "uniqueQualifier": "-8095763497910363325", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HZ4jlROHYGDxorJvXsGU-yTy180\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "OUTBOUND_RELAY_ENABLED" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:07:32.707Z", - "uniqueQualifier": "-7232560280648585155", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QAlZq8kxJsp1wNMf5_r9yMw1oQ8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EMAIL_AUTOFORWARDING" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:07:06.701Z", - "uniqueQualifier": "-4639460941160861591", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hgFZhnqQi7TgkQ6cUEQZxwME2yM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EMAIL_AUTOFORWARDING" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T21:06:06.018Z", - "uniqueQualifier": "-5674161863985525771", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cDy0uvfClo2exvgZ-brHzMUWAhY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_OUTLOOK_SYNC" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T20:42:55.513Z", - "uniqueQualifier": "-8619860601033001300", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/F1WXgIPf8Cv4x__d6w6yduNcehQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EMAIL_AUTOFORWARDING" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T20:35:12.291Z", - "uniqueQualifier": "-8939052168772238187", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3wfU9TVHiPdyRG6ds3GF7Otpor0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_OUTLOOK_SYNC" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T20:25:14.299Z", - "uniqueQualifier": "-7612220170230844153", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rF2v9WzbQmnT7Qvg--g-H6ey5HE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_OUTLOOK_SYNC" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T20:19:38.080Z", - "uniqueQualifier": "-5014104996182378615", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hNIP629hKIUS9zjfUBpMImVzAXc\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_OUTLOOK_SYNC" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T20:13:18.536Z", - "uniqueQualifier": "-4759608888648017471", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PhZ5VQgxiFTQPnkk4q0VCeAUiXU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_OUTLOOK_SYNC" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T20:11:18.677Z", - "uniqueQualifier": "-8909905279033106094", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Bvnn5m6G64HlvuiXcyS-w1lbqBI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T20:02:25.525Z", - "uniqueQualifier": "-7992278422230522896", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V_92ankkjnXO_DOv-rPXRuRYmr4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T20:01:49.493Z", - "uniqueQualifier": "-8109103356776023164", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/MzInKrhJ8Kdka6aMgQir82dp2X4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:57:47.163Z", - "uniqueQualifier": "-8188318268526356168", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/MoGtGI0dHmksak_iUwk0Ms0nWrY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:57:15.582Z", - "uniqueQualifier": "-8651035981142186442", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/IRvyyUXFu7j-vyyFsJyhlfOFTs4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:57:06.666Z", - "uniqueQualifier": "-4728890308066544062", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jPsO2-lSYIEwNSuRz31lrIQoMSQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:55:16.620Z", - "uniqueQualifier": "-6778456187725220486", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-vwT_VOnIy0viMAvjTueuiueHX0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:53:24.896Z", - "uniqueQualifier": "-4985538612795785772", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VtWAScfhZa5u3SUWzmtO1I5EgG8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:52:26.287Z", - "uniqueQualifier": "-6214982117479199256", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ceNwJZ15a1ojYHN1-wGNjNHhlTI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:50:25.649Z", - "uniqueQualifier": "-5083429636578294529", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uavcRp9EqyoyfCHd-iXDit2L_EM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:50:13.042Z", - "uniqueQualifier": "-9096013674984849363", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KnakV9jIJaY5nHxJcr2hcysKNQ4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" - }, - { - "name": "NEW_VALUE", - "value": "DISABLED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:48:07.968Z", - "uniqueQualifier": "-4767306219726251079", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tP9xnEZ7KUJXAUR2bRKKAEkAVh0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" - }, - { - "name": "NEW_VALUE", - "value": "DISABLED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:43:51.742Z", - "uniqueQualifier": "-6540726772729614082", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5gfN-5FxsaSGRkehIJgstgcORa8\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:42:09.377Z", - "uniqueQualifier": "-6158037699155854069", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rqU5rmsnR-NEb1wB680YTP5A0bg\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EMAIL_USER_IMPORT" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:41:14.310Z", - "uniqueQualifier": "-9187610611734390870", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0LQaFABw4F5CEdtTBqi216tBm5I\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EMAIL_USER_IMPORT" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-07T19:40:08.340Z", - "uniqueQualifier": "-5677650715039890159", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mTSpFa_6gvCCASAvdM1cEUK7jgA\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EMAIL_USER_IMPORT" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T18:53:29.850Z", - "uniqueQualifier": "-7588363845181409421", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/R4BHaevFqrJ97k3snK-KKOPw-vM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_SENDER_ATTRIBUTION" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_MAILBOX_GROUP_DELEGATION" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ALLOW_SENDER_ATTRIBUTION_CUSTOMIZATION" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T18:52:59.453Z", - "uniqueQualifier": "-7595358577437419937", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/X-CnaNiIYh_FwC_6XeePb-Kq2LE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T18:52:34.201Z", - "uniqueQualifier": "-7868003009966565743", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o__0xL0DwOw71IGGY4MWGWsha58\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ALLOW_SENDER_ATTRIBUTION_CUSTOMIZATION" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_SENDER_ATTRIBUTION" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_MAILBOX_GROUP_DELEGATION" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T18:51:58.179Z", - "uniqueQualifier": "-5588391883838532498", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/shu-cPQLHTqnsimO0_muFyd4nnw\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T18:51:04.105Z", - "uniqueQualifier": "-7965382699069746799", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_e0GdviiKTCaUrCfDYpH40JT7ug\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_SENDER_ATTRIBUTION" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_MAILBOX_GROUP_DELEGATION" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ALLOW_SENDER_ATTRIBUTION_CUSTOMIZATION" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T18:50:17.526Z", - "uniqueQualifier": "-5851129210180951102", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OkfAWCyk-EjHOg_aG-whpIw0ces\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-02T18:49:22.474Z", - "uniqueQualifier": "-4678643818380845153", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ntika7xnxnDsOvA5dHA8f_e1N74\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-16T18:39:20.629Z", - "uniqueQualifier": "-7216214042325487606", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UZnWtd7fC_OA4SquwifJ3RFMFDQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:54:45.666Z", - "uniqueQualifier": "3932197789466149184", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/thkNBS6vEaom_GnV2vc6isXWoqE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "RETENTION_POLICY" - }, - { - "name": "OLD_VALUE", - "value": "DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "ENABLED" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T18:54:36.203Z", - "uniqueQualifier": "-6203442127950220345", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kxqf9kIThsEEXt0Q56-Jh9lF3EI\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "RETENTION_POLICY" - }, - { - "name": "OLD_VALUE", - "value": "ENABLED" - }, - { - "name": "NEW_VALUE", - "value": "DISABLED" - }, - { - "name": "DOMAIN_NAME", - "value": "example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-10T16:21:52.214Z", - "uniqueQualifier": "-6014367350232484216", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2M3TAzz2AlCRmYUewwei65sko6c\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" - }, - { - "name": "NEW_VALUE", - "value": "DISABLED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-30T21:53:41.301Z", - "uniqueQualifier": "-5816693748781146108", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/a6D0n5piJguhJpAQtrAmGOwNdw0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-30T21:48:28.729Z", - "uniqueQualifier": "-5299536692910296933", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cQJoqL0HGchUhLQEddJhmuHjUxY\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-30T21:48:21.195Z", - "uniqueQualifier": "-7225735303026835043", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9toIZDz0ZfInhtqrARrJyrsbURE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "DISABLED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-30T21:46:53.368Z", - "uniqueQualifier": "-8679081967770796097", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/U0e0pW9wkLzVED5uoPFT33Dcemg\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "DISABLED" - }, - { - "name": "NEW_VALUE", - "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T23:52:44.740Z", - "uniqueQualifier": "-7637827464269962062", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zhIZL8bhbZJ_eH75-bdZzLI1iDE\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EMAIL_AUTOFORWARDING" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T23:17:01.501Z", - "uniqueQualifier": "-9006670395198114015", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Xc5feahHkmN5GtGxt5nABssgnH4\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "DISABLED" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T23:15:31.149Z", - "uniqueQualifier": "-6017357394151553113", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5e-RmtjF-VaI0umq8r54lyz4Q-o\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_OUTLOOK_SYNC" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T22:51:58.904Z", - "uniqueQualifier": "-6872050504957565716", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0bRHbrw6DqiEeeDF5BkcfV9M7qU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T22:50:37.133Z", - "uniqueQualifier": "-7786728164357987178", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vzhS3mjPlyIWD8ziCUssI6QBufQ\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" - }, - { - "name": "GROUP_EMAIL", - "value": "wallbenjamin@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T22:49:12.857Z", - "uniqueQualifier": "-7724567653635556035", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1kPbEUuzwiHIaReh8_E4qW9FPfM\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_POP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "IMAP_ACCESS" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" - }, - { - "name": "NEW_VALUE", - "value": "DISABLED" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-29T17:59:15.519Z", - "uniqueQualifier": "-6999163503709316415", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kefRiH9z0q9qNBFar6R3cishdBw\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:46:52.557Z", - "uniqueQualifier": "-4990251964110501579", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ujidckrstraPhOCfpBEc_fYozN0\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EMAIL_USER_IMPORT" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:46:13.932Z", - "uniqueQualifier": "-6095943839510973279", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1aFsFW7bJK-h6e-t2fYLKFx_gYU\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_EMAIL_USER_IMPORT" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:30:29.227Z", - "uniqueQualifier": "-8879909675184632860", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HH3pHlD4LTvCxliYTDkONYE3x3c\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_MAILBOX_GROUP_DELEGATION" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ALLOW_SENDER_ATTRIBUTION_CUSTOMIZATION" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_SENDER_ATTRIBUTION" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - }, - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Diane Ellis" - }, - { - "name": "OLD_VALUE", - "value": "INHERIT_FROM_PARENT" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-10T19:28:31.506Z", - "uniqueQualifier": "-6339158507640117533", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/05bGW4K8uT81iEtEJxoHYiV9Wmk\"", - "actor": { - "callerType": "USER", - "email": "wallbenjamin@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "188.150.109.63", - "events": [ - { - "type": "EMAIL_SETTINGS", - "name": "CHANGE_EMAIL_SETTING", - "parameters": [ - { - "name": "SETTING_NAME", - "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - } - ] - }, - "groups_logs": { - "items": [ - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:37:43.283Z", - "uniqueQualifier": "-4904438979277015128", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tkBcuXoI_8FrPuNObVlc4WNEYjE\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:37:43.283Z", - "uniqueQualifier": "-4904438979277015128", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tkBcuXoI_8FrPuNObVlc4WNEYjE\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:36:21.891Z", - "uniqueQualifier": "-8669371008482495405", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/v7X1t6hr1F05H8D4HzS4XACaveE\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:36:21.891Z", - "uniqueQualifier": "-8669371008482495405", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/v7X1t6hr1F05H8D4HzS4XACaveE\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:36:13.768Z", - "uniqueQualifier": "-7866552149204692863", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mU1QoC4g18B9IrJ61FmRh2zMgI0\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:36:13.768Z", - "uniqueQualifier": "-7866552149204692863", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mU1QoC4g18B9IrJ61FmRh2zMgI0\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:36:13.768Z", - "uniqueQualifier": "-7866552149204692863", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mU1QoC4g18B9IrJ61FmRh2zMgI0\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:36:13.768Z", - "uniqueQualifier": "-7866552149204692863", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mU1QoC4g18B9IrJ61FmRh2zMgI0\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:33:48.949Z", - "uniqueQualifier": "-5496101249954155620", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KSL9g8i-ALnsOtTnptFw4BndVjY\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "OWNERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "OWNERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:33:48.949Z", - "uniqueQualifier": "-5496101249954155620", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KSL9g8i-ALnsOtTnptFw4BndVjY\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "OWNERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "OWNERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:33:48.949Z", - "uniqueQualifier": "-5496101249954155620", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KSL9g8i-ALnsOtTnptFw4BndVjY\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "OWNERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "OWNERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:33:48.949Z", - "uniqueQualifier": "-5496101249954155620", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KSL9g8i-ALnsOtTnptFw4BndVjY\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "OWNERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "OWNERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:33:04.557Z", - "uniqueQualifier": "-5504555202671295586", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/L-1ejPhsvHDfZbO3cn9Gy5TyBxg\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "OWNERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "OWNERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:33:04.557Z", - "uniqueQualifier": "-5504555202671295586", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/L-1ejPhsvHDfZbO3cn9Gy5TyBxg\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "OWNERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "OWNERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:32:01.559Z", - "uniqueQualifier": "-4907656681345959991", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DiaJEshjdRsODihbU6Hx1-Hg1WA\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MANAGERS" - }, - { - "name": "NEW_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MANAGERS" - }, - { - "name": "NEW_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:32:01.559Z", - "uniqueQualifier": "-4907656681345959991", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DiaJEshjdRsODihbU6Hx1-Hg1WA\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MANAGERS" - }, - { - "name": "NEW_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MANAGERS" - }, - { - "name": "NEW_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:24:14.686Z", - "uniqueQualifier": "-9112802051723476293", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gi8_7lWDkJX8gncvBg3z6f4-xSA\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:24:14.686Z", - "uniqueQualifier": "-9112802051723476293", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gi8_7lWDkJX8gncvBg3z6f4-xSA\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:23:34.595Z", - "uniqueQualifier": "-8267341555213866055", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/sRyytbYo3mUlrp_u3m_21-o1BaM\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto who_can_create_groups" - }, - { - "name": "OLD_VALUE", - "value": "USERS_IN_DOMAIN" - }, - { - "name": "NEW_VALUE", - "value": "WORLD" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto who_can_create_groups" - }, - { - "name": "OLD_VALUE", - "value": "USERS_IN_DOMAIN" - }, - { - "name": "NEW_VALUE", - "value": "WORLD" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:23:34.595Z", - "uniqueQualifier": "-8267341555213866055", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/sRyytbYo3mUlrp_u3m_21-o1BaM\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto who_can_create_groups" - }, - { - "name": "OLD_VALUE", - "value": "USERS_IN_DOMAIN" - }, - { - "name": "NEW_VALUE", - "value": "WORLD" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto who_can_create_groups" - }, - { - "name": "OLD_VALUE", - "value": "USERS_IN_DOMAIN" - }, - { - "name": "NEW_VALUE", - "value": "WORLD" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:23:34.595Z", - "uniqueQualifier": "-8267341555213866055", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/sRyytbYo3mUlrp_u3m_21-o1BaM\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto who_can_create_groups" - }, - { - "name": "OLD_VALUE", - "value": "USERS_IN_DOMAIN" - }, - { - "name": "NEW_VALUE", - "value": "WORLD" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto who_can_create_groups" - }, - { - "name": "OLD_VALUE", - "value": "USERS_IN_DOMAIN" - }, - { - "name": "NEW_VALUE", - "value": "WORLD" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:23:34.595Z", - "uniqueQualifier": "-8267341555213866055", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/sRyytbYo3mUlrp_u3m_21-o1BaM\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto who_can_create_groups" - }, - { - "name": "OLD_VALUE", - "value": "USERS_IN_DOMAIN" - }, - { - "name": "NEW_VALUE", - "value": "WORLD" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto who_can_create_groups" - }, - { - "name": "OLD_VALUE", - "value": "USERS_IN_DOMAIN" - }, - { - "name": "NEW_VALUE", - "value": "WORLD" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:22:57.150Z", - "uniqueQualifier": "-6234921438137055089", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_owIByGF2s3-5o33gHtjTqazZN4\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:22:57.150Z", - "uniqueQualifier": "-6234921438137055089", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_owIByGF2s3-5o33gHtjTqazZN4\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:22:43.993Z", - "uniqueQualifier": "-6966308199380559657", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_SdirAbxAbmefcrqBvbo0j5B0QY\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto who_can_create_groups" - }, - { - "name": "OLD_VALUE", - "value": "ADMIN_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "USERS_IN_DOMAIN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto who_can_create_groups" - }, - { - "name": "OLD_VALUE", - "value": "ADMIN_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "USERS_IN_DOMAIN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:22:43.993Z", - "uniqueQualifier": "-6966308199380559657", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_SdirAbxAbmefcrqBvbo0j5B0QY\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto who_can_create_groups" - }, - { - "name": "OLD_VALUE", - "value": "ADMIN_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "USERS_IN_DOMAIN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto who_can_create_groups" - }, - { - "name": "OLD_VALUE", - "value": "ADMIN_ONLY" - }, - { - "name": "NEW_VALUE", - "value": "USERS_IN_DOMAIN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:17:19.606Z", - "uniqueQualifier": "-8418685703927066318", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CYQ8e0XNXiHPw5LGQrHxOhJmj1s\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_external_members" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_external_members" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:17:19.606Z", - "uniqueQualifier": "-8418685703927066318", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CYQ8e0XNXiHPw5LGQrHxOhJmj1s\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_external_members" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_external_members" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:17:19.606Z", - "uniqueQualifier": "-8418685703927066318", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CYQ8e0XNXiHPw5LGQrHxOhJmj1s\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_external_members" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_external_members" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:17:19.606Z", - "uniqueQualifier": "-8418685703927066318", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CYQ8e0XNXiHPw5LGQrHxOhJmj1s\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_external_members" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_external_members" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:14:52.502Z", - "uniqueQualifier": "-7520287385961964835", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ao7lzw1HWgLUm02zdOzhbJFGwA0\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_external_members" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_external_members" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:14:52.502Z", - "uniqueQualifier": "-7520287385961964835", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ao7lzw1HWgLUm02zdOzhbJFGwA0\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_external_members" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto owners_can_allow_external_members" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:13:50.444Z", - "uniqueQualifier": "-8965504840731817885", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oDKYAFASQ9Tk4Ws92_UERXix82o\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:13:50.444Z", - "uniqueQualifier": "-8965504840731817885", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oDKYAFASQ9Tk4Ws92_UERXix82o\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:13:15.242Z", - "uniqueQualifier": "-4672168368876777939", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Y_BjsqXMtGEpWc4ydzlaxwZmwFw\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T20:13:15.242Z", - "uniqueQualifier": "-4672168368876777939", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Y_BjsqXMtGEpWc4ydzlaxwZmwFw\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-05T19:14:37.336Z", - "uniqueQualifier": "-6449288065435827893", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/M8gWt5mC9nXz_hgEPC0rnuB62Qs\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-05T19:14:37.336Z", - "uniqueQualifier": "-6449288065435827893", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/M8gWt5mC9nXz_hgEPC0rnuB62Qs\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-05T19:13:24.534Z", - "uniqueQualifier": "-7856870949104581356", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TLCgMxU1BiC3toIPLrSzxr4HKpM\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-05T19:13:24.534Z", - "uniqueQualifier": "-7856870949104581356", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TLCgMxU1BiC3toIPLrSzxr4HKpM\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T21:18:04.853Z", - "uniqueQualifier": "-7111684680849442804", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/klHLmbdd3q4Mu8qThSzQiFou4J0\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T21:18:04.853Z", - "uniqueQualifier": "-7111684680849442804", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/klHLmbdd3q4Mu8qThSzQiFou4J0\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:57:06.843Z", - "uniqueQualifier": "-6204715428815412139", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBg7rUzPpTqQhQVVLWVOCdeholM\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MEMBERS" - }, - { - "name": "NEW_VALUE", - "value": "MANAGERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MEMBERS" - }, - { - "name": "NEW_VALUE", - "value": "MANAGERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:57:06.843Z", - "uniqueQualifier": "-6204715428815412139", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBg7rUzPpTqQhQVVLWVOCdeholM\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MEMBERS" - }, - { - "name": "NEW_VALUE", - "value": "MANAGERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MEMBERS" - }, - { - "name": "NEW_VALUE", - "value": "MANAGERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:53:06.323Z", - "uniqueQualifier": "-7763452661463152583", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6oJ1Ah7snzrcYmffdkAnNialNJs\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:53:06.323Z", - "uniqueQualifier": "-7763452661463152583", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6oJ1Ah7snzrcYmffdkAnNialNJs\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:53:06.323Z", - "uniqueQualifier": "-7763452661463152583", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6oJ1Ah7snzrcYmffdkAnNialNJs\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:53:06.323Z", - "uniqueQualifier": "-7763452661463152583", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6oJ1Ah7snzrcYmffdkAnNialNJs\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "PUBLIC" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:51:50.405Z", - "uniqueQualifier": "-5036186245106370921", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2qExsKxdtz5TOj6D2WJgmbmt434\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:51:50.405Z", - "uniqueQualifier": "-5036186245106370921", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2qExsKxdtz5TOj6D2WJgmbmt434\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:51:50.405Z", - "uniqueQualifier": "-5036186245106370921", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2qExsKxdtz5TOj6D2WJgmbmt434\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:51:50.405Z", - "uniqueQualifier": "-5036186245106370921", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2qExsKxdtz5TOj6D2WJgmbmt434\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "PUBLIC" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:50:43.473Z", - "uniqueQualifier": "-7117354763329458436", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pM21caWQuJXA2mw7cr8i719Y-jk\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MANAGERS" - }, - { - "name": "NEW_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MANAGERS" - }, - { - "name": "NEW_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:50:43.473Z", - "uniqueQualifier": "-7117354763329458436", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pM21caWQuJXA2mw7cr8i719Y-jk\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MANAGERS" - }, - { - "name": "NEW_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MANAGERS" - }, - { - "name": "NEW_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:48:59.908Z", - "uniqueQualifier": "-6323665838879164080", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9I3NWDAdKDwVpyKlVUID9TvPvEg\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "OWNERS" - }, - { - "name": "NEW_VALUE", - "value": "MANAGERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "OWNERS" - }, - { - "name": "NEW_VALUE", - "value": "MANAGERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:48:59.908Z", - "uniqueQualifier": "-6323665838879164080", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9I3NWDAdKDwVpyKlVUID9TvPvEg\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "OWNERS" - }, - { - "name": "NEW_VALUE", - "value": "MANAGERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "OWNERS" - }, - { - "name": "NEW_VALUE", - "value": "MANAGERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:47:39.816Z", - "uniqueQualifier": "-7036518029279799858", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/v6phs8UNzfp56wW812X2zfBW2To\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MEMBERS" - }, - { - "name": "NEW_VALUE", - "value": "OWNERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MEMBERS" - }, - { - "name": "NEW_VALUE", - "value": "OWNERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:47:39.816Z", - "uniqueQualifier": "-7036518029279799858", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/v6phs8UNzfp56wW812X2zfBW2To\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MEMBERS" - }, - { - "name": "NEW_VALUE", - "value": "OWNERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "MEMBERS" - }, - { - "name": "NEW_VALUE", - "value": "OWNERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:41:09.333Z", - "uniqueQualifier": "-4735955040041761964", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/q7dOw72qMc9l6ID3NRN7IYQfVg0\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:41:09.333Z", - "uniqueQualifier": "-4735955040041761964", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/q7dOw72qMc9l6ID3NRN7IYQfVg0\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto default_view_topics_access_level" - }, - { - "name": "OLD_VALUE", - "value": "DOMAIN_USERS" - }, - { - "name": "NEW_VALUE", - "value": "MEMBERS" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:34:18.664Z", - "uniqueQualifier": "-5256001228217440553", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/138uItmVSuSBL1H3W0ByCWo1bio\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:34:18.664Z", - "uniqueQualifier": "-5256001228217440553", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/138uItmVSuSBL1H3W0ByCWo1bio\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "OPEN" - }, - { - "name": "NEW_VALUE", - "value": "CLOSED" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:33:18.234Z", - "uniqueQualifier": "-8428811444455467452", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mhfOtxltCJLhxN1G2GaNez2C4Ys\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:33:18.234Z", - "uniqueQualifier": "-8428811444455467452", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mhfOtxltCJLhxN1G2GaNez2C4Ys\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto collaboration_policy" - }, - { - "name": "OLD_VALUE", - "value": "CLOSED" - }, - { - "name": "NEW_VALUE", - "value": "OPEN" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:26:27.149Z", - "uniqueQualifier": "-4822096225956778257", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j4CaP-hzD53IQAsrAJfw5q6YBA0\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:26:27.149Z", - "uniqueQualifier": "-4822096225956778257", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j4CaP-hzD53IQAsrAJfw5q6YBA0\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:24:07.823Z", - "uniqueQualifier": "-6928636887115177485", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TIcLBv69k_7xAwa83NTSWAsBOQs\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T19:24:07.823Z", - "uniqueQualifier": "-6928636887115177485", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TIcLBv69k_7xAwa83NTSWAsBOQs\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto allow_unlisted_groups" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T18:48:29.488Z", - "uniqueQualifier": "-7671215909739986270", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O3yUrumPOSXEZCVZP8wVVL8yT9c\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto new_groups_are_unlisted" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto new_groups_are_unlisted" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T18:48:29.488Z", - "uniqueQualifier": "-7671215909739986270", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O3yUrumPOSXEZCVZP8wVVL8yT9c\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto new_groups_are_unlisted" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto new_groups_are_unlisted" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T18:48:22.266Z", - "uniqueQualifier": "-7964742630930404774", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gjcH0kAv6ssrYTr0PKKuazLnzSI\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto new_groups_are_unlisted" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto new_groups_are_unlisted" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-04-16T18:48:22.266Z", - "uniqueQualifier": "-7964742630930404774", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gjcH0kAv6ssrYTr0PKKuazLnzSI\"", - "actor": { - "callerType": "USER", - "email": "williamsmaria@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "161.20.153.182", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto new_groups_are_unlisted" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "business" - } - ] - }, - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Groups for Business" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "GroupsSharingSettingsProto new_groups_are_unlisted" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "standard" - } - ] - } - ] - } - ] - }, - "meet_logs": { - "items": [ - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:55:37.869Z", - "uniqueQualifier": "-8374287999136728679", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cGjlWrimBqO01CXYx7yAQoxlbHo\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Stephens" - }, - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - { - "name": "OLD_VALUE", - "value": "NO_ONE" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:54:31.145Z", - "uniqueQualifier": "-8104928817540590542", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Mi9R9XxARRQQe_kRMbd4vYpgGp8\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "NEW_VALUE", - "value": "CONTACTS_AND_SAME_DOMAIN" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:53:56.352Z", - "uniqueQualifier": "-6766904102890133338", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UAf7SsvJ5EDHnVdU_pxtEc4Szz8\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - { - "name": "OLD_VALUE", - "value": "NO_ONE" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:50:32.343Z", - "uniqueQualifier": "-6439791708317553310", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FjFNGKDYtwQRdo9U_LQ9YA4L6xI\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Warn for external participants External or unidentified participants in a meeting are given a label" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:49:48.547Z", - "uniqueQualifier": "-8511607302872145393", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5lRWi7F1LjpOITx926Z0bYaf3Jg\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Warn for external participants External or unidentified participants in a meeting are given a label" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:48:33.149Z", - "uniqueQualifier": "-6835658709060728209", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6Ftv9mxvZlTkdvLWhZrIaQWITYk\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Stephens" - }, - { - "name": "SETTING_NAME", - "value": "SafetyModerationLockProto host_management_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:47:38.236Z", - "uniqueQualifier": "-5118571039915596769", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oMZ7nJLZCzvyVcFPdFMsb2ZHfJg\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyModerationLockProto host_management_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:47:27.041Z", - "uniqueQualifier": "-8099089512881198832", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ui0Jxxq9YUHVdIwvYomTwzwXWzM\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Stephens" - }, - { - "name": "SETTING_NAME", - "value": "SafetyModerationLockProto host_management_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:45:06.644Z", - "uniqueQualifier": "-6856778993139090964", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Eqw7rKUcZt0iu8jilL0tV7dCAqk\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyAccessLockProto meetings_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "SAME_DOMAIN" - }, - { - "name": "NEW_VALUE", - "value": "WORKSPACE_DOMAINS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:45:00.591Z", - "uniqueQualifier": "-5366605936444943748", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6DxtZMv5s-zxp1w7OvgLhd7oeRo\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyAccessLockProto meetings_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "NEW_VALUE", - "value": "SAME_DOMAIN" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:44:20.793Z", - "uniqueQualifier": "-7777319459911597339", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/59rqvaXBEfsoVTxbowoBIub5uYw\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyAccessLockProto meetings_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "WORKSPACE_DOMAINS" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:43:40.195Z", - "uniqueQualifier": "-6089323717336756141", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/MO5dSMk6xwm_Q_WmxVEDD-ZdPKs\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyAccessLockProto meetings_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "NEW_VALUE", - "value": "WORKSPACE_DOMAINS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:36:45.489Z", - "uniqueQualifier": "-7298713937355141569", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KiToDsyiOizecMNDZTw5GYWUmFw\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyDomainLockProto users_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "NEW_VALUE", - "value": "SAME_DOMAIN" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:36:10.824Z", - "uniqueQualifier": "-6203188244941888696", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/elrHYwMfNlA0HiQqSmmriDRIxLw\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyDomainLockProto users_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "LOGGED_IN" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:35:36.891Z", - "uniqueQualifier": "-4614946522497774418", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ZH81r2VYKz6Nvv7s1bCJ1CqSH9Q\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyDomainLockProto users_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "NEW_VALUE", - "value": "LOGGED_IN" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-25T01:18:15.188Z", - "uniqueQualifier": "-7916226346238711538", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gQHTGOFKONu2BI79olPvZx1XA1Y\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyAccessLockProto meetings_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "NEW_VALUE", - "value": "WORKSPACE_DOMAINS" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-25T01:16:06.383Z", - "uniqueQualifier": "-7937568576718507934", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ByJnzGdQ9tdIv-3pAQ3DQQw2A3Y\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyDomainLockProto users_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "LOGGED_IN" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T13:18:11.170Z", - "uniqueQualifier": "-8250460015944039555", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QrbwI8IJ9SeL_qiwf3nWmnFHu88\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyModerationLockProto host_management_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T13:14:54.350Z", - "uniqueQualifier": "-7285527198788751441", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pK9UTflV9f1DBCjnyTj4P6FjEGw\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyModerationLockProto host_management_enabled" - }, - { - "name": "OLD_VALUE", - "value": "true" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T13:08:14.004Z", - "uniqueQualifier": "-6597726453327910005", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/km-aD9OJ0Q1LgecAe8H1ARe8qMA\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyAccessLockProto meetings_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "NEW_VALUE", - "value": "SAME_DOMAIN" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T13:05:10.779Z", - "uniqueQualifier": "-5648369683815270870", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/30LzU4kvVXV4jfIazWJ3twUDxdM\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyAccessLockProto meetings_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "SAME_DOMAIN" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T12:36:18.972Z", - "uniqueQualifier": "-8595295552696246609", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NFH56c0BbMcUrB6PtsLGdiA_7z0\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyDomainLockProto users_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "NEW_VALUE", - "value": "LOGGED_IN" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T12:28:12.685Z", - "uniqueQualifier": "-6006807023156133255", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j45ya0jGUIPcamUu9WVRvz_A90c\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyDomainLockProto users_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "LOGGED_IN" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T12:27:57.249Z", - "uniqueQualifier": "-7746578310967437033", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Xk_Z4WK8L7xB49pW67hQ16ReXz4\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyDomainLockProto users_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "NEW_VALUE", - "value": "LOGGED_IN" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-18T17:04:51.575Z", - "uniqueQualifier": "-4750258269045578274", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jP4h1Hq-POcWrwHIuKOQpzzEivQ\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "NEW_VALUE", - "value": "NO_ONE" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-18T17:03:47.454Z", - "uniqueQualifier": "-8184931754066388108", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/B_hVzRM1ttYp6ux2zcW2EK4YtnQ\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - { - "name": "OLD_VALUE", - "value": "CONTACTS_AND_SAME_DOMAIN" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-18T16:49:53.143Z", - "uniqueQualifier": "-5209246982694999638", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/laP2OUhDXCIn2TymAPHbyCN6dKs\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "NEW_VALUE", - "value": "CONTACTS_AND_SAME_DOMAIN" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-03T14:33:27.308Z", - "uniqueQualifier": "-4991163248443167249", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PBxqeNSGj773JUH9ieqrRA2o9e0\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CHANGE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "RecordingSettingsProto recording_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:55:03.524Z", - "uniqueQualifier": "-5525678875046184068", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/x_oZXF4KYf9upc4wBe0ntFNbyhI\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Stephens" - }, - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - { - "name": "NEW_VALUE", - "value": "NO_ONE" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:51:58.391Z", - "uniqueQualifier": "-6293797606453030970", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5v7wjNHE8B2B9Fhkj7UBoNab87w\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyModerationLockProto host_management_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:51:03.443Z", - "uniqueQualifier": "-9120831340154170401", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EQxC3TuCiUBHhMA4yaT-MC6Ux4o\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Stephens" - }, - { - "name": "SETTING_NAME", - "value": "Warn for external participants External or unidentified participants in a meeting are given a label" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:47:19.174Z", - "uniqueQualifier": "-4938542069025293008", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JAAuaHoNcSm6vnYXzovie2Ul0UU\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Stephens" - }, - { - "name": "SETTING_NAME", - "value": "SafetyModerationLockProto host_management_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:45:54.795Z", - "uniqueQualifier": "-8333886986700398767", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gIYcpq4qN_CC220XOTu5i8F5Doc\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Stephens" - }, - { - "name": "SETTING_NAME", - "value": "SafetyAccessLockProto meetings_allowed_to_join" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:38:22.685Z", - "uniqueQualifier": "-9149827511358918659", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JCXFUtB6mvKgCdVDxncLhVU7J6U\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyDomainLockProto users_allowed_to_join" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:37:20.275Z", - "uniqueQualifier": "-7185040730001420179", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bEAS0fQ_12Vjzm-7fxmx0zxR-tE\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "SafetyDomainLockProto users_allowed_to_join" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-25T01:20:48.803Z", - "uniqueQualifier": "-8392254067149706858", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jnSr6LmPs7F1qYoR3EUDuf6VIM0\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-25T01:20:03.797Z", - "uniqueQualifier": "-7674857818999495582", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8qLHtkYKiWRwk5LOvYIEJaHXYKs\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Warn for external participants External or unidentified participants in a meeting are given a label" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-25T01:18:51.598Z", - "uniqueQualifier": "-5708074622440254373", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nCS34dmPtisDaUpvta0Qf3g5b5o\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyModerationLockProto host_management_enabled" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-25T01:17:33.971Z", - "uniqueQualifier": "-8224205482712570389", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Y2veBthUfRZsawFrn0_DqNveX-4\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyAccessLockProto meetings_allowed_to_join" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T13:26:15.349Z", - "uniqueQualifier": "-5310138581724770249", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/LEkQSE50XP6VLEeNXMwnsS5WHq8\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Warn for external participants External or unidentified participants in a meeting are given a label" - }, - { - "name": "NEW_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T13:14:12.588Z", - "uniqueQualifier": "-7008317980551322320", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Bw7aB9gqKLHm4jbOxW7ZOBm-RPg\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyModerationLockProto host_management_enabled" - }, - { - "name": "NEW_VALUE", - "value": "true" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T13:05:02.067Z", - "uniqueQualifier": "-8673740825309699055", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Hbki1-rgT6Ndy60w0rLcv9p6eiE\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyAccessLockProto meetings_allowed_to_join" - }, - { - "name": "NEW_VALUE", - "value": "SAME_DOMAIN" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-18T17:18:58.610Z", - "uniqueQualifier": "-8849126657732400123", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/af9iHpiN73b_mlaPvVSu2p3zutY\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyDomainLockProto users_allowed_to_join" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-18T17:06:04.340Z", - "uniqueQualifier": "-7109330685672096015", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zBcPWfof9MpWcmD-8ZuKY85v_pI\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-18T17:05:26.856Z", - "uniqueQualifier": "-5367584374733700161", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/it3O8Nt7G2H2lUgR4rWw60tlhHg\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "CREATE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Stephens" - }, - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - { - "name": "NEW_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:56:58.359Z", - "uniqueQualifier": "-8100966994637955202", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ul8lwwu9TPSMD0DkiaH1rvmExig\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:56:11.570Z", - "uniqueQualifier": "-9140592026686128278", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KYq_Td0Q4NuRiF5QdJx6JPDDkJg\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Stephens" - }, - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:53:05.471Z", - "uniqueQualifier": "-8299844283929535138", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C9SCvkq62JNOkd6akurRDLNlggU\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Warn for external participants External or unidentified participants in a meeting are given a label" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:52:24.099Z", - "uniqueQualifier": "-8891102369683469003", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nJBhqFCDYgeFlVmIN3TT6MbP4rY\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyModerationLockProto host_management_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:51:41.497Z", - "uniqueQualifier": "-7724102773423493751", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cqltKzaYIPPm3u1jqFRmVeMAEv8\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Stephens" - }, - { - "name": "SETTING_NAME", - "value": "Warn for external participants External or unidentified participants in a meeting are given a label" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:48:45.486Z", - "uniqueQualifier": "-7013893434920142293", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CutCpFqOkcQR1-xdI06mrpeWJNs\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyModerationLockProto host_management_enabled" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:46:18.617Z", - "uniqueQualifier": "-7289903475532555558", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Swm3v4tXzqUWXQadigUiYITIRpU\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Stephens" - }, - { - "name": "SETTING_NAME", - "value": "SafetyAccessLockProto meetings_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:42:35.654Z", - "uniqueQualifier": "-5685969507023220608", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/iTq_sSJqRiwIFYm62wuAghCxN04\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyDomainLockProto users_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T14:37:44.699Z", - "uniqueQualifier": "-9150050450372581903", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7aro6o2VxGdezb81SViKDe_Xjvs\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SETTING_NAME", - "value": "SafetyDomainLockProto users_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-25T01:16:38.711Z", - "uniqueQualifier": "-5854719055139876158", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HbS8rTBq8AOE1Gj_-RWnk-ncRkE\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "SafetyDomainLockProto users_allowed_to_join" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T13:27:57.624Z", - "uniqueQualifier": "-8576033219745313419", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VDdgEYUwcxZOl6zX0IvfztZ3C3s\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Warn for external participants External or unidentified participants in a meeting are given a label" - }, - { - "name": "OLD_VALUE", - "value": "false" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-18T17:16:59.457Z", - "uniqueQualifier": "-4723297543966837316", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HSxCTYBt_NUcJtpF5choU0dGgek\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - }, - { - "name": "GROUP_EMAIL", - "value": "allenboyer@example.org" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-18T17:11:13.375Z", - "uniqueQualifier": "-8597404910937715931", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mjwMhvm4V3aKkrKKD2HLTBm1z3Q\"", - "actor": { - "callerType": "USER", - "email": "allenboyer@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "76.160.151.52", - "events": [ - { - "type": "APPLICATION_SETTINGS", - "name": "DELETE_APPLICATION_SETTING", - "parameters": [ - { - "name": "APPLICATION_NAME", - "value": "Google Meet" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Eric Stephens" - }, - { - "name": "SETTING_NAME", - "value": "Incoming call restrictions Allowed caller type" - }, - { - "name": "OLD_VALUE", - "value": "ALL" - }, - { - "name": "APPLICATION_EDITION", - "value": "enterprise" - } - ] - } - ] - } - ] - }, - "rules_logs": { - "items": [ - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:54:45.235Z", - "uniqueQualifier": "3956971810518958651", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3HYv_7nzSkJTy6G9dcS26FWujEs\"", - "actor": { - "callerType": "USER", - "email": "westdaniel@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "45.241.14.132", - "events": [ - { - "type": "SYSTEM_DEFINED_RULES", - "name": "SYSTEM_DEFINED_RULE_UPDATED", - "parameters": [ - { - "name": "SYSTEM_DEFINED_RULE_NAME", - "value": "New user added" - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", - "value": "Status changed from OFF to ON." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", - "value": "Severity unchanged." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", - "value": "Email notification status unchanged, receivers unchanged." - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:54:39.199Z", - "uniqueQualifier": "7584547128614457324", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/sKYN8_1QIhGVH-_HV1naZEakQHc\"", - "actor": { - "callerType": "USER", - "email": "westdaniel@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "45.241.14.132", - "events": [ - { - "type": "SYSTEM_DEFINED_RULES", - "name": "SYSTEM_DEFINED_RULE_UPDATED", - "parameters": [ - { - "name": "SYSTEM_DEFINED_RULE_NAME", - "value": "New user added" - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", - "value": "Status changed from ON to OFF." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", - "value": "Severity unchanged." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", - "value": "Email notification status unchanged, receivers unchanged." - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:53:59.117Z", - "uniqueQualifier": "-1250275645785002285", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/fLanXmLJNNOuKfwLzQjvzrBNf2c\"", - "actor": { - "callerType": "USER", - "email": "westdaniel@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "45.241.14.132", - "events": [ - { - "type": "SYSTEM_DEFINED_RULES", - "name": "SYSTEM_DEFINED_RULE_UPDATED", - "parameters": [ - { - "name": "SYSTEM_DEFINED_RULE_NAME", - "value": "User's Admin privilege revoked" - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", - "value": "Status changed from OFF to ON." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", - "value": "Severity unchanged." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", - "value": "Email notification status unchanged, receivers unchanged." - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:53:50.610Z", - "uniqueQualifier": "7927042438549362917", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/WB937qQipGjEFJquxFGTxowdTUA\"", - "actor": { - "callerType": "USER", - "email": "westdaniel@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "45.241.14.132", - "events": [ - { - "type": "SYSTEM_DEFINED_RULES", - "name": "SYSTEM_DEFINED_RULE_UPDATED", - "parameters": [ - { - "name": "SYSTEM_DEFINED_RULE_NAME", - "value": "User's Admin privilege revoked" - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", - "value": "Status changed from ON to OFF." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", - "value": "Severity unchanged." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", - "value": "Email notification status unchanged, receivers unchanged." - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:53:34.254Z", - "uniqueQualifier": "-1626866263407183445", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BG7GZXiq0Itewq-mBi5TOL8v7CA\"", - "actor": { - "callerType": "USER", - "email": "westdaniel@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "45.241.14.132", - "events": [ - { - "type": "SYSTEM_DEFINED_RULES", - "name": "SYSTEM_DEFINED_RULE_UPDATED", - "parameters": [ - { - "name": "SYSTEM_DEFINED_RULE_NAME", - "value": "Suspicious login" - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", - "value": "Status changed from ON to OFF." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", - "value": "Severity unchanged." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", - "value": "Email notification status unchanged, receivers unchanged." - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:53:20.166Z", - "uniqueQualifier": "52166172304592135", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uaxjyUS2p1sRe9nuOW6yon8AsEw\"", - "actor": { - "callerType": "USER", - "email": "westdaniel@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "45.241.14.132", - "events": [ - { - "type": "SYSTEM_DEFINED_RULES", - "name": "SYSTEM_DEFINED_RULE_UPDATED", - "parameters": [ - { - "name": "SYSTEM_DEFINED_RULE_NAME", - "value": "User granted Admin privilege" - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", - "value": "Status changed from OFF to ON." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", - "value": "Severity unchanged." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", - "value": "Email notification status unchanged, receivers unchanged." - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:53:14.421Z", - "uniqueQualifier": "-4904664504744280262", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yq2m50JMRluGhy9OuPuH-d4RVko\"", - "actor": { - "callerType": "USER", - "email": "westdaniel@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "45.241.14.132", - "events": [ - { - "type": "SYSTEM_DEFINED_RULES", - "name": "SYSTEM_DEFINED_RULE_UPDATED", - "parameters": [ - { - "name": "SYSTEM_DEFINED_RULE_NAME", - "value": "User granted Admin privilege" - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", - "value": "Status changed from ON to OFF." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", - "value": "Severity unchanged." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", - "value": "Email notification status unchanged, receivers unchanged." - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:53:02.567Z", - "uniqueQualifier": "-3122993961818219247", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yJqZ0R0cv43RVi49A7-_nxaHdhY\"", - "actor": { - "callerType": "USER", - "email": "westdaniel@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "45.241.14.132", - "events": [ - { - "type": "SYSTEM_DEFINED_RULES", - "name": "SYSTEM_DEFINED_RULE_UPDATED", - "parameters": [ - { - "name": "SYSTEM_DEFINED_RULE_NAME", - "value": "User's password changed" - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", - "value": "Status changed from ON to OFF." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", - "value": "Severity unchanged." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", - "value": "Email notification status unchanged, receivers unchanged." - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:50:56.855Z", - "uniqueQualifier": "-2827365250717378087", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FODN_RALS_eOvqkkysPVFLpY-4Q\"", - "actor": { - "callerType": "USER", - "email": "westdaniel@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "45.241.14.132", - "events": [ - { - "type": "SYSTEM_DEFINED_RULES", - "name": "SYSTEM_DEFINED_RULE_UPDATED", - "parameters": [ - { - "name": "SYSTEM_DEFINED_RULE_NAME", - "value": "User granted Admin privilege" - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", - "value": "Status changed from OFF to ON." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", - "value": "Severity unchanged." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", - "value": "Email notification status unchanged, receivers unchanged." - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-10-11T20:50:51.171Z", - "uniqueQualifier": "5141795198896305035", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vYL7719HMlFf8aLiJLY2t7owZzo\"", - "actor": { - "callerType": "USER", - "email": "westdaniel@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "45.241.14.132", - "events": [ - { - "type": "SYSTEM_DEFINED_RULES", - "name": "SYSTEM_DEFINED_RULE_UPDATED", - "parameters": [ - { - "name": "SYSTEM_DEFINED_RULE_NAME", - "value": "User granted Admin privilege" - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", - "value": "Status changed from ON to OFF." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", - "value": "Severity unchanged." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", - "value": "Email notification status unchanged, receivers unchanged." - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-25T16:01:11.218Z", - "uniqueQualifier": "7184977982843790688", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dCl4MiNxazZFb9H4s9b2u_tkV4Q\"", - "actor": { - "callerType": "USER", - "email": "westdaniel@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "45.241.14.132", - "events": [ - { - "type": "SYSTEM_DEFINED_RULES", - "name": "SYSTEM_DEFINED_RULE_UPDATED", - "parameters": [ - { - "name": "SYSTEM_DEFINED_RULE_NAME", - "value": "User granted Admin privilege" - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", - "value": "Status changed from OFF to ON." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", - "value": "Severity unchanged." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", - "value": "Email notification status unchanged, receivers unchanged." - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-25T16:00:06.405Z", - "uniqueQualifier": "7775662809542561286", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/d5rFSRYtyjsBVsX2kOEh1sk_Z2g\"", - "actor": { - "callerType": "USER", - "email": "westdaniel@example.org", - "profileId": "089885993421003892476" - }, - "ipAddress": "45.241.14.132", - "events": [ - { - "type": "SYSTEM_DEFINED_RULES", - "name": "SYSTEM_DEFINED_RULE_UPDATED", - "parameters": [ - { - "name": "SYSTEM_DEFINED_RULE_NAME", - "value": "User granted Admin privilege" - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", - "value": "Status changed from ON to OFF." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", - "value": "Severity unchanged." - }, - { - "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", - "value": "Email notification status unchanged, receivers unchanged." - } - ] - } - ] - } - ] - }, - "sites_logs": { - "items": [ - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T21:21:06.841Z", - "uniqueQualifier": "-9098195182074921452", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-fQO1VttB1Obie8i8zS9CKBE21Y\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "GROUP_EMAIL", - "value": "Test Group" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T21:20:46.288Z", - "uniqueQualifier": "8025554506417096733", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zS3HSddvbnPer8u4kCOjHdrrzbg\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "GROUP_EMAIL", - "value": "Test Group" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T21:16:20.189Z", - "uniqueQualifier": "6356283915385824969", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/D1TR1mn2jV4m3nTNDvIwKEw-g_U\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T21:16:01.109Z", - "uniqueQualifier": "7204973669826879617", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/SzCRUx16q6JUq3WFPzNQnvjeRmM\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T21:09:14.177Z", - "uniqueQualifier": "8302313116147020961", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RNrPvwvGArfJNJh9_prabZiUiZ0\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Rita Taylor DDS" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T21:08:47.434Z", - "uniqueQualifier": "-8749900273598629428", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PoaNB1Mn23UiFStWmas0q4T5aik\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Rita Taylor DDS" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-13T21:08:23.813Z", - "uniqueQualifier": "-2006657176011927130", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2ZZie_YZHJjeztU_5SjNtcvQ150\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Rita Taylor DDS" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T15:15:04.510Z", - "uniqueQualifier": "-5444758841714443622", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zd0oHRz1H30sZY8gJ7Ifv1xekxg\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "Early Access Apps" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T15:14:56.923Z", - "uniqueQualifier": "-5957373208334712224", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gAP9lpj6QvRtP0_bDD_kh972Uuc\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "Early Access Apps" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T15:14:02.942Z", - "uniqueQualifier": "-5708636481598052506", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CKXjGSesbvWzCU5wOAYKityUEXQ\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "AI Studio" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T15:13:14.451Z", - "uniqueQualifier": "-5236552787674514970", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QpmFQfW7NRV6UQret9O8gZ_roMA\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "AI Studio" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T15:11:52.275Z", - "uniqueQualifier": "-170769798380779633", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9GiJqVQHVqWVuVJU-b6q8bZh_zQ\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-09-12T15:09:52.063Z", - "uniqueQualifier": "3839884327329736493", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/d_fbdFvJa_chJfoulpfORJiV0-4\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-29T16:58:53.890Z", - "uniqueQualifier": "7454046695208426259", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wES7_Ynv5c8CiZyw16LybVDvoUw\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-22T18:20:51.143Z", - "uniqueQualifier": "-7688066320309934110", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EM38FAFsPQjrzvstCc2wey7T0l0\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "Gemini" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T16:35:34.867Z", - "uniqueQualifier": "-7527263763506654985", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/J6Pbk-QpRmwtf3RNIo3EChrSprw\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-20T15:28:15.108Z", - "uniqueQualifier": "6601077961077712234", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2O8VGsfETfnfmBqZRaCMnPr89do\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-07T11:43:06.667Z", - "uniqueQualifier": "-7947017718017192057", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DCQPh23OixiPHvct0lsp7J6Ysdc\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "Early Access Apps" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T19:22:55.858Z", - "uniqueQualifier": "-1594877828342837660", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/69OSj6V2mD9_iXaVundnAgzOTF8\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Paula Smith" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "INHERIT_FROM_PARENT" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T19:21:04.795Z", - "uniqueQualifier": "2753106744149837378", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DVZ60mbnjb0-SaeLEkWknblA_uw\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Paula Smith" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T19:20:59.156Z", - "uniqueQualifier": "6178707512128116339", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/irVhaBwGC1mNiciRkZXYQqWEXjE\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Paula Smith" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T19:19:13.642Z", - "uniqueQualifier": "2808073231402698204", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Gv6XaiMq_nD6suJkxzSwTJBndQ0\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T19:19:08.164Z", - "uniqueQualifier": "8736007291127896364", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rkw5mtTUj5MbLbQWOmU45x-BnMw\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T19:08:30.787Z", - "uniqueQualifier": "533218495484865116", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NYKdZWqDJyEWI93fdecspxR5CoA\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-08-02T18:59:47.601Z", - "uniqueQualifier": "-2453065809836051332", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tTdKdRnzKNEW_bBoIK9vtnuCscc\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-07-10T13:02:25.716Z", - "uniqueQualifier": "-6733023187686062485", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1WFFW5dUtAH3Rt4tRlgLzCGaJfs\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "GROUP_EMAIL", - "value": "Test Group" - }, - { - "name": "SERVICE_NAME", - "value": "Google Meet" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-17T13:24:57.067Z", - "uniqueQualifier": "162223212287505661", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mxrwtdruurEUt_byTOSSap4u8EQ\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-17T13:17:15.082Z", - "uniqueQualifier": "1964753045072657864", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HTA6cJ12b2oz5I5yyyz1QeBn3is\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Sites OU" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-12T15:24:57.620Z", - "uniqueQualifier": "-689788582864289", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/94Ja39XIYZ62lAFAugruZ-VlHcw\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-06-12T15:19:16.583Z", - "uniqueQualifier": "3590866658306550858", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hO5E-6ac0TKrbBRUJeRbK9qU80s\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Rita Taylor DDS" - }, - { - "name": "SERVICE_NAME", - "value": "Sites" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-03T12:43:40.126Z", - "uniqueQualifier": "1462511194025694775", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KZHuaRruLn5lkB5lKfbr5bruz38\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "false" - } - ] - } - ] - }, - { - "kind": "admin#reports#activity", - "id": { - "time": "2024-05-03T12:42:57.125Z", - "uniqueQualifier": "2444645180561800039", - "applicationName": "admin", - "customerId": "ABCDEFG" - }, - "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jjCS2080C-2siWcbEf6_0xEP56Q\"", - "actor": { - "callerType": "USER", - "email": "ipayne@example.net", - "profileId": "089885993421003892476" - }, - "ipAddress": "84.221.212.242", - "events": [ - { - "type": "ORG_SETTINGS", - "name": "TOGGLE_SERVICE_ENABLED", - "parameters": [ - { - "name": "DOMAIN_NAME", - "value": "example.org" - }, - { - "name": "ORG_UNIT_NAME", - "value": "Org Name" - }, - { - "name": "SERVICE_NAME", - "value": "DISABLE_UNLISTED_SERVICES" - }, - { - "name": "NEW_VALUE", - "value": "true" - } - ] - } - ] - } - ] - }, - "tenant_info": { - "domain": "example.org", - "topLevelOU": "Org Name" - }, - "domains": [ - "example.org", - "David Berg" - ], - "spf_records": [ - { - "domain": "example.org", - "rdata": [ - "v=spf1 include:_spf.google.com ~all" - ], - "log": [ - { - "query_name": "example.org", - "query_method": "traditional", - "query_result": "Query returned 1 txt records" - } - ] - }, - { - "domain": "Jill Hudson", - "rdata": [ - "v=spf1 include:spf.protection.outlook.com -all" - ], - "log": [ - { - "query_name": "Jill Hudson", - "query_method": "traditional", - "query_result": "Query returned 1 txt records" - } - ] - } - ], - "dkim_records": [ - { - "domain": "example.org", - "rdata": [ - "v=DKIM1; k=rsa; p=myfakeexamplepublickey;" - ], - "log": [ - { - "query_name": "google._domainkey.example.org", - "query_method": "traditional", - "query_result": "Query returned 1 txt records" - } - ] - }, - { - "domain": "Megan Cooper", - "rdata": [ - "v=DKIM1; k=rsa; p=myfakeexamplepublickey;" - ], - "log": [ - { - "query_name": "google._domainkey.Megan Cooper", - "query_method": "traditional", - "query_result": "Query returned NXDOMAIN" - }, - { - "query_name": "selector1._domainkey.Megan Cooper", - "query_method": "traditional", - "query_result": "Query returned NXDOMAIN" - }, - { - "query_name": "selector2._domainkey.Megan Cooper", - "query_method": "traditional", - "query_result": "Query returned 1 txt records" - } - ] - } - ], - "dmarc_records": [ - { - "domain": "example.org", - "rdata": [], - "log": [ - { - "query_name": "_dmarc.example.org", - "query_method": "traditional", - "query_result": "Query returned NXDOMAIN" - }, - { - "query_name": "_dmarc.example.org", - "query_method": "traditional", - "query_result": "Query returned NXDOMAIN" - } - ] - }, - { - "domain": "Christina Cobb", - "rdata": [ - "v=DMARC1; p=reject; pct=100; rua=mailto:zgill@example.com, mailto:zgill@example.com" - ], - "log": [ - { - "query_name": "_dmarc.Christina Cobb", - "query_method": "traditional", - "query_result": "Query returned NXDOMAIN" - }, - { - "query_name": "_dmarc.example.gov", - "query_method": "traditional", - "query_result": "Query returned 1 txt records" - } - ] - } - ], - "super_admins": [ - { - "primaryEmail": "kimbarnes1@example.org", - "orgUnitPath": "" - }, - { - "primaryEmail": "kimbarnes2@example.org", - "orgUnitPath": "" - }, - { - "primaryEmail": "kimbarnes3@example.org", - "orgUnitPath": "" - }, - { - "primaryEmail": "kimbarnes4@example.org", - "orgUnitPath": "" - }, - { - "primaryEmail": "kimbarnes5@example.org", - "orgUnitPath": "" - }, - { - "primaryEmail": "kimbarnes6@example.org", - "orgUnitPath": "" - }, - { - "primaryEmail": "kimbarnes7@example.org", - "orgUnitPath": "" - }, - { - "primaryEmail": "kimbarnes8@example.org", - "orgUnitPath": "" - }, - { - "primaryEmail": "kimbarnes9@example.org", - "orgUnitPath": "" - }, - { - "primaryEmail": "kimbarnes10@example.org", - "orgUnitPath": "" - }, - { - "primaryEmail": "kimbarnes11@example.org", - "orgUnitPath": "" - } - ], - "group_settings": [ - { - "kind": "groupsSettings#groups", - "email": "daniel44@example.org", - "name": "Benjamin Patterson", - "description": "Beta testing efforts for GWS AI-based DLP capabilities", - "whoCanJoin": "INVITED_CAN_JOIN", - "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", - "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", - "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", - "whoCanAdd": "ALL_MANAGERS_CAN_ADD", - "allowExternalMembers": "false", - "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", - "allowWebPosting": "true", - "primaryLanguage": "en_US", - "maxMessageBytes": 26214400, - "isArchived": "true", - "archiveOnly": "false", - "messageModerationLevel": "MODERATE_NONE", - "spamModerationLevel": "MODERATE", - "replyTo": "REPLY_TO_IGNORE", - "includeCustomFooter": "false", - "customFooterText": "", - "sendMessageDenyNotification": "false", - "defaultMessageDenyNotificationText": "", - "showInGroupDirectory": "true", - "allowGoogleCommunication": "false", - "membersCanPostAsTheGroup": "false", - "messageDisplayFont": "DEFAULT_FONT", - "includeInGlobalAddressList": "true", - "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", - "whoCanContactOwner": "ANYONE_CAN_CONTACT", - "whoCanAddReferences": "NONE", - "whoCanAssignTopics": "NONE", - "whoCanUnassignTopic": "NONE", - "whoCanTakeTopics": "NONE", - "whoCanMarkDuplicate": "NONE", - "whoCanMarkNoResponseNeeded": "NONE", - "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", - "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanEnterFreeFormTags": "NONE", - "whoCanModifyTagsAndCategories": "NONE", - "favoriteRepliesOnTop": "true", - "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", - "whoCanBanUsers": "OWNERS_AND_MANAGERS", - "whoCanModifyMembers": "OWNERS_AND_MANAGERS", - "whoCanApproveMessages": "OWNERS_AND_MANAGERS", - "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", - "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", - "whoCanLockTopics": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", - "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", - "whoCanHideAbuse": "NONE", - "whoCanMakeTopicsSticky": "NONE", - "whoCanModerateMembers": "OWNERS_AND_MANAGERS", - "whoCanModerateContent": "OWNERS_AND_MANAGERS", - "whoCanAssistContent": "NONE", - "customRolesEnabledForSettingsToBeMerged": "false", - "enableCollaborativeInbox": "false", - "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", - "defaultSender": "DEFAULT_SELF" - }, - { - "kind": "groupsSettings#groups", - "email": "daniel44@example.org", - "name": "Lori Bennett", - "description": "Lori Bennett", - "whoCanJoin": "INVITED_CAN_JOIN", - "whoCanViewMembership": "ALL_MANAGERS_CAN_VIEW", - "whoCanViewGroup": "ALL_IN_DOMAIN_CAN_VIEW", - "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", - "whoCanAdd": "ALL_MANAGERS_CAN_ADD", - "allowExternalMembers": "false", - "whoCanPostMessage": "ALL_MANAGERS_CAN_POST", - "allowWebPosting": "true", - "primaryLanguage": "en_US", - "maxMessageBytes": 26214400, - "isArchived": "true", - "archiveOnly": "false", - "messageModerationLevel": "MODERATE_NONE", - "spamModerationLevel": "MODERATE", - "replyTo": "REPLY_TO_IGNORE", - "includeCustomFooter": "false", - "customFooterText": "", - "sendMessageDenyNotification": "false", - "defaultMessageDenyNotificationText": "", - "showInGroupDirectory": "false", - "allowGoogleCommunication": "false", - "membersCanPostAsTheGroup": "false", - "messageDisplayFont": "DEFAULT_FONT", - "includeInGlobalAddressList": "true", - "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", - "whoCanContactOwner": "ANYONE_CAN_CONTACT", - "whoCanAddReferences": "NONE", - "whoCanAssignTopics": "NONE", - "whoCanUnassignTopic": "NONE", - "whoCanTakeTopics": "NONE", - "whoCanMarkDuplicate": "NONE", - "whoCanMarkNoResponseNeeded": "NONE", - "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", - "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanEnterFreeFormTags": "NONE", - "whoCanModifyTagsAndCategories": "NONE", - "favoriteRepliesOnTop": "true", - "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", - "whoCanBanUsers": "OWNERS_AND_MANAGERS", - "whoCanModifyMembers": "OWNERS_AND_MANAGERS", - "whoCanApproveMessages": "OWNERS_AND_MANAGERS", - "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", - "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", - "whoCanLockTopics": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", - "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", - "whoCanHideAbuse": "NONE", - "whoCanMakeTopicsSticky": "NONE", - "whoCanModerateMembers": "OWNERS_AND_MANAGERS", - "whoCanModerateContent": "OWNERS_AND_MANAGERS", - "whoCanAssistContent": "NONE", - "customRolesEnabledForSettingsToBeMerged": "false", - "enableCollaborativeInbox": "false", - "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", - "defaultSender": "DEFAULT_SELF" - }, - { - "kind": "groupsSettings#groups", - "email": "daniel44@example.org", - "name": "Classroom Teachers", - "description": "This group includes all Classroom teachers in your domain. Users who say they are teachers are added as pending members until you approve. Note that members of this group have additional privileges, which you can control in the Admin Console. WARNING: Do not delete this group.", - "whoCanJoin": "CAN_REQUEST_TO_JOIN", - "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", - "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", - "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", - "whoCanAdd": "ALL_MANAGERS_CAN_ADD", - "allowExternalMembers": "false", - "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", - "allowWebPosting": "true", - "primaryLanguage": "en_US", - "maxMessageBytes": 26214400, - "isArchived": "false", - "archiveOnly": "false", - "messageModerationLevel": "MODERATE_NONE", - "spamModerationLevel": "MODERATE", - "replyTo": "REPLY_TO_LIST", - "includeCustomFooter": "false", - "customFooterText": "", - "sendMessageDenyNotification": "false", - "defaultMessageDenyNotificationText": "", - "showInGroupDirectory": "true", - "allowGoogleCommunication": "false", - "membersCanPostAsTheGroup": "false", - "messageDisplayFont": "DEFAULT_FONT", - "includeInGlobalAddressList": "true", - "whoCanLeaveGroup": "ALL_OWNERS_CAN_LEAVE", - "whoCanContactOwner": "ANYONE_CAN_CONTACT", - "whoCanAddReferences": "NONE", - "whoCanAssignTopics": "NONE", - "whoCanUnassignTopic": "NONE", - "whoCanTakeTopics": "NONE", - "whoCanMarkDuplicate": "NONE", - "whoCanMarkNoResponseNeeded": "NONE", - "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", - "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanEnterFreeFormTags": "NONE", - "whoCanModifyTagsAndCategories": "NONE", - "favoriteRepliesOnTop": "true", - "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", - "whoCanBanUsers": "OWNERS_AND_MANAGERS", - "whoCanModifyMembers": "OWNERS_AND_MANAGERS", - "whoCanApproveMessages": "OWNERS_AND_MANAGERS", - "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", - "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", - "whoCanLockTopics": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", - "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", - "whoCanHideAbuse": "NONE", - "whoCanMakeTopicsSticky": "NONE", - "whoCanModerateMembers": "OWNERS_AND_MANAGERS", - "whoCanModerateContent": "OWNERS_AND_MANAGERS", - "whoCanAssistContent": "NONE", - "customRolesEnabledForSettingsToBeMerged": "false", - "enableCollaborativeInbox": "false", - "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", - "defaultSender": "DEFAULT_SELF" - }, - { - "kind": "groupsSettings#groups", - "email": "daniel44@example.org", - "name": "Maria Nelson", - "description": "hello world", - "whoCanJoin": "ALL_IN_DOMAIN_CAN_JOIN", - "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", - "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", - "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", - "whoCanAdd": "ALL_MANAGERS_CAN_ADD", - "allowExternalMembers": "false", - "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", - "allowWebPosting": "true", - "primaryLanguage": "en", - "maxMessageBytes": 26214400, - "isArchived": "true", - "archiveOnly": "false", - "messageModerationLevel": "MODERATE_NONE", - "spamModerationLevel": "MODERATE", - "replyTo": "REPLY_TO_IGNORE", - "includeCustomFooter": "false", - "customFooterText": "", - "sendMessageDenyNotification": "false", - "defaultMessageDenyNotificationText": "", - "showInGroupDirectory": "true", - "allowGoogleCommunication": "false", - "membersCanPostAsTheGroup": "false", - "messageDisplayFont": "DEFAULT_FONT", - "includeInGlobalAddressList": "true", - "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", - "whoCanContactOwner": "ALL_IN_DOMAIN_CAN_CONTACT", - "whoCanAddReferences": "NONE", - "whoCanAssignTopics": "OWNERS_AND_MANAGERS", - "whoCanUnassignTopic": "OWNERS_AND_MANAGERS", - "whoCanTakeTopics": "OWNERS_AND_MANAGERS", - "whoCanMarkDuplicate": "OWNERS_AND_MANAGERS", - "whoCanMarkNoResponseNeeded": "OWNERS_AND_MANAGERS", - "whoCanMarkFavoriteReplyOnAnyTopic": "OWNERS_AND_MANAGERS", - "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", - "whoCanUnmarkFavoriteReplyOnAnyTopic": "OWNERS_AND_MANAGERS", - "whoCanEnterFreeFormTags": "OWNERS_AND_MANAGERS", - "whoCanModifyTagsAndCategories": "OWNERS_AND_MANAGERS", - "favoriteRepliesOnTop": "true", - "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", - "whoCanBanUsers": "OWNERS_AND_MANAGERS", - "whoCanModifyMembers": "OWNERS_AND_MANAGERS", - "whoCanApproveMessages": "OWNERS_AND_MANAGERS", - "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", - "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", - "whoCanLockTopics": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", - "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", - "whoCanHideAbuse": "OWNERS_AND_MANAGERS", - "whoCanMakeTopicsSticky": "OWNERS_AND_MANAGERS", - "whoCanModerateMembers": "OWNERS_AND_MANAGERS", - "whoCanModerateContent": "OWNERS_AND_MANAGERS", - "whoCanAssistContent": "OWNERS_AND_MANAGERS", - "customRolesEnabledForSettingsToBeMerged": "false", - "enableCollaborativeInbox": "false", - "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", - "defaultSender": "DEFAULT_SELF" - }, - { - "kind": "groupsSettings#groups", - "email": "daniel44@example.org", - "name": "Donald Ross", - "description": "", - "whoCanJoin": "INVITED_CAN_JOIN", - "whoCanViewMembership": "ALL_IN_DOMAIN_CAN_VIEW", - "whoCanViewGroup": "ALL_IN_DOMAIN_CAN_VIEW", - "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", - "whoCanAdd": "ALL_MANAGERS_CAN_ADD", - "allowExternalMembers": "false", - "whoCanPostMessage": "ALL_IN_DOMAIN_CAN_POST", - "allowWebPosting": "true", - "primaryLanguage": "en_US", - "maxMessageBytes": 26214400, - "isArchived": "true", - "archiveOnly": "false", - "messageModerationLevel": "MODERATE_NONE", - "spamModerationLevel": "MODERATE", - "replyTo": "REPLY_TO_IGNORE", - "includeCustomFooter": "false", - "customFooterText": "", - "sendMessageDenyNotification": "false", - "defaultMessageDenyNotificationText": "", - "showInGroupDirectory": "true", - "allowGoogleCommunication": "false", - "membersCanPostAsTheGroup": "false", - "messageDisplayFont": "DEFAULT_FONT", - "includeInGlobalAddressList": "true", - "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", - "whoCanContactOwner": "ANYONE_CAN_CONTACT", - "whoCanAddReferences": "NONE", - "whoCanAssignTopics": "NONE", - "whoCanUnassignTopic": "NONE", - "whoCanTakeTopics": "NONE", - "whoCanMarkDuplicate": "NONE", - "whoCanMarkNoResponseNeeded": "NONE", - "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", - "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanEnterFreeFormTags": "NONE", - "whoCanModifyTagsAndCategories": "NONE", - "favoriteRepliesOnTop": "true", - "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", - "whoCanBanUsers": "OWNERS_AND_MANAGERS", - "whoCanModifyMembers": "OWNERS_AND_MANAGERS", - "whoCanApproveMessages": "OWNERS_AND_MANAGERS", - "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", - "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", - "whoCanLockTopics": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", - "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", - "whoCanHideAbuse": "NONE", - "whoCanMakeTopicsSticky": "NONE", - "whoCanModerateMembers": "OWNERS_AND_MANAGERS", - "whoCanModerateContent": "OWNERS_AND_MANAGERS", - "whoCanAssistContent": "NONE", - "customRolesEnabledForSettingsToBeMerged": "false", - "enableCollaborativeInbox": "false", - "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", - "defaultSender": "DEFAULT_SELF" - }, - { - "kind": "groupsSettings#groups", - "email": "daniel44@example.org", - "name": "Joseph Hardy", - "description": "hi", - "whoCanJoin": "INVITED_CAN_JOIN", - "whoCanViewMembership": "ALL_IN_DOMAIN_CAN_VIEW", - "whoCanViewGroup": "ALL_IN_DOMAIN_CAN_VIEW", - "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", - "whoCanAdd": "ALL_MANAGERS_CAN_ADD", - "allowExternalMembers": "false", - "whoCanPostMessage": "ALL_IN_DOMAIN_CAN_POST", - "allowWebPosting": "true", - "primaryLanguage": "en_US", - "maxMessageBytes": 26214400, - "isArchived": "true", - "archiveOnly": "false", - "messageModerationLevel": "MODERATE_NONE", - "spamModerationLevel": "MODERATE", - "replyTo": "REPLY_TO_IGNORE", - "includeCustomFooter": "false", - "customFooterText": "", - "sendMessageDenyNotification": "false", - "defaultMessageDenyNotificationText": "", - "showInGroupDirectory": "true", - "allowGoogleCommunication": "false", - "membersCanPostAsTheGroup": "false", - "messageDisplayFont": "DEFAULT_FONT", - "includeInGlobalAddressList": "true", - "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", - "whoCanContactOwner": "ANYONE_CAN_CONTACT", - "whoCanAddReferences": "NONE", - "whoCanAssignTopics": "NONE", - "whoCanUnassignTopic": "NONE", - "whoCanTakeTopics": "NONE", - "whoCanMarkDuplicate": "NONE", - "whoCanMarkNoResponseNeeded": "NONE", - "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", - "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanEnterFreeFormTags": "NONE", - "whoCanModifyTagsAndCategories": "NONE", - "favoriteRepliesOnTop": "true", - "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", - "whoCanBanUsers": "OWNERS_AND_MANAGERS", - "whoCanModifyMembers": "OWNERS_AND_MANAGERS", - "whoCanApproveMessages": "OWNERS_AND_MANAGERS", - "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", - "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", - "whoCanLockTopics": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", - "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", - "whoCanHideAbuse": "NONE", - "whoCanMakeTopicsSticky": "NONE", - "whoCanModerateMembers": "OWNERS_AND_MANAGERS", - "whoCanModerateContent": "OWNERS_AND_MANAGERS", - "whoCanAssistContent": "NONE", - "customRolesEnabledForSettingsToBeMerged": "false", - "enableCollaborativeInbox": "false", - "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", - "defaultSender": "DEFAULT_SELF" - }, - { - "kind": "groupsSettings#groups", - "email": "daniel44@example.org", - "name": "Christopher Sullivan", - "description": "hello world", - "whoCanJoin": "INVITED_CAN_JOIN", - "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", - "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", - "whoCanInvite": "ALL_OWNERS_CAN_INVITE", - "whoCanAdd": "ALL_OWNERS_CAN_ADD", - "allowExternalMembers": "true", - "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", - "allowWebPosting": "false", - "primaryLanguage": "en_US", - "maxMessageBytes": 26214400, - "isArchived": "true", - "archiveOnly": "false", - "messageModerationLevel": "MODERATE_NONE", - "spamModerationLevel": "MODERATE", - "replyTo": "REPLY_TO_IGNORE", - "includeCustomFooter": "false", - "customFooterText": "", - "sendMessageDenyNotification": "false", - "defaultMessageDenyNotificationText": "", - "showInGroupDirectory": "true", - "allowGoogleCommunication": "false", - "membersCanPostAsTheGroup": "false", - "messageDisplayFont": "DEFAULT_FONT", - "includeInGlobalAddressList": "true", - "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", - "whoCanContactOwner": "ALL_MEMBERS_CAN_CONTACT", - "whoCanAddReferences": "NONE", - "whoCanAssignTopics": "NONE", - "whoCanUnassignTopic": "NONE", - "whoCanTakeTopics": "NONE", - "whoCanMarkDuplicate": "NONE", - "whoCanMarkNoResponseNeeded": "NONE", - "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", - "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanEnterFreeFormTags": "NONE", - "whoCanModifyTagsAndCategories": "NONE", - "favoriteRepliesOnTop": "true", - "whoCanApproveMembers": "ALL_OWNERS_CAN_APPROVE", - "whoCanBanUsers": "OWNERS_ONLY", - "whoCanModifyMembers": "OWNERS_ONLY", - "whoCanApproveMessages": "OWNERS_AND_MANAGERS", - "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", - "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", - "whoCanLockTopics": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", - "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", - "whoCanHideAbuse": "NONE", - "whoCanMakeTopicsSticky": "NONE", - "whoCanModerateMembers": "OWNERS_ONLY", - "whoCanModerateContent": "OWNERS_AND_MANAGERS", - "whoCanAssistContent": "NONE", - "customRolesEnabledForSettingsToBeMerged": "false", - "enableCollaborativeInbox": "true", - "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", - "defaultSender": "DEFAULT_SELF" - }, - { - "kind": "groupsSettings#groups", - "email": "daniel44@example.org", - "name": "Joel Knight", - "description": "This is a internal group for technical content owners to keep track of changes for the security configuration baseline.", - "whoCanJoin": "INVITED_CAN_JOIN", - "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", - "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", - "whoCanInvite": "ALL_OWNERS_CAN_INVITE", - "whoCanAdd": "ALL_OWNERS_CAN_ADD", - "allowExternalMembers": "true", - "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", - "allowWebPosting": "true", - "primaryLanguage": "en_US", - "maxMessageBytes": 26214400, - "isArchived": "true", - "archiveOnly": "false", - "messageModerationLevel": "MODERATE_NONE", - "spamModerationLevel": "MODERATE", - "replyTo": "REPLY_TO_IGNORE", - "includeCustomFooter": "false", - "customFooterText": "", - "sendMessageDenyNotification": "false", - "defaultMessageDenyNotificationText": "", - "showInGroupDirectory": "true", - "allowGoogleCommunication": "false", - "membersCanPostAsTheGroup": "false", - "messageDisplayFont": "DEFAULT_FONT", - "includeInGlobalAddressList": "true", - "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", - "whoCanContactOwner": "ALL_MEMBERS_CAN_CONTACT", - "whoCanAddReferences": "NONE", - "whoCanAssignTopics": "NONE", - "whoCanUnassignTopic": "NONE", - "whoCanTakeTopics": "NONE", - "whoCanMarkDuplicate": "NONE", - "whoCanMarkNoResponseNeeded": "NONE", - "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", - "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanEnterFreeFormTags": "NONE", - "whoCanModifyTagsAndCategories": "NONE", - "favoriteRepliesOnTop": "true", - "whoCanApproveMembers": "ALL_OWNERS_CAN_APPROVE", - "whoCanBanUsers": "OWNERS_ONLY", - "whoCanModifyMembers": "OWNERS_ONLY", - "whoCanApproveMessages": "OWNERS_AND_MANAGERS", - "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", - "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", - "whoCanLockTopics": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", - "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", - "whoCanHideAbuse": "NONE", - "whoCanMakeTopicsSticky": "NONE", - "whoCanModerateMembers": "OWNERS_ONLY", - "whoCanModerateContent": "OWNERS_AND_MANAGERS", - "whoCanAssistContent": "NONE", - "customRolesEnabledForSettingsToBeMerged": "false", - "enableCollaborativeInbox": "true", - "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", - "defaultSender": "DEFAULT_SELF" - }, - { - "kind": "groupsSettings#groups", - "email": "daniel44@example.org", - "name": "Security Group", - "description": "", - "whoCanJoin": "INVITED_CAN_JOIN", - "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", - "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", - "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", - "whoCanAdd": "ALL_MANAGERS_CAN_ADD", - "allowExternalMembers": "false", - "whoCanPostMessage": "ALL_IN_DOMAIN_CAN_POST", - "allowWebPosting": "true", - "primaryLanguage": "en_US", - "maxMessageBytes": 26214400, - "isArchived": "false", - "archiveOnly": "false", - "messageModerationLevel": "MODERATE_NONE", - "spamModerationLevel": "MODERATE", - "replyTo": "REPLY_TO_IGNORE", - "includeCustomFooter": "false", - "customFooterText": "", - "sendMessageDenyNotification": "false", - "defaultMessageDenyNotificationText": "", - "showInGroupDirectory": "true", - "allowGoogleCommunication": "false", - "membersCanPostAsTheGroup": "false", - "messageDisplayFont": "DEFAULT_FONT", - "includeInGlobalAddressList": "true", - "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", - "whoCanContactOwner": "ALL_IN_DOMAIN_CAN_CONTACT", - "whoCanAddReferences": "NONE", - "whoCanAssignTopics": "NONE", - "whoCanUnassignTopic": "NONE", - "whoCanTakeTopics": "NONE", - "whoCanMarkDuplicate": "NONE", - "whoCanMarkNoResponseNeeded": "NONE", - "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", - "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanEnterFreeFormTags": "NONE", - "whoCanModifyTagsAndCategories": "NONE", - "favoriteRepliesOnTop": "true", - "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", - "whoCanBanUsers": "OWNERS_AND_MANAGERS", - "whoCanModifyMembers": "OWNERS_AND_MANAGERS", - "whoCanApproveMessages": "OWNERS_AND_MANAGERS", - "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", - "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", - "whoCanLockTopics": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", - "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", - "whoCanHideAbuse": "NONE", - "whoCanMakeTopicsSticky": "NONE", - "whoCanModerateMembers": "OWNERS_AND_MANAGERS", - "whoCanModerateContent": "OWNERS_AND_MANAGERS", - "whoCanAssistContent": "NONE", - "customRolesEnabledForSettingsToBeMerged": "false", - "enableCollaborativeInbox": "false", - "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", - "defaultSender": "DEFAULT_SELF" - }, - { - "kind": "groupsSettings#groups", - "email": "daniel44@example.org", - "name": "Scott Garcia", - "description": "This group is a secret", - "whoCanJoin": "INVITED_CAN_JOIN", - "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", - "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", - "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", - "whoCanAdd": "ALL_MANAGERS_CAN_ADD", - "allowExternalMembers": "true", - "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", - "allowWebPosting": "true", - "primaryLanguage": "en_US", - "maxMessageBytes": 26214400, - "isArchived": "true", - "archiveOnly": "false", - "messageModerationLevel": "MODERATE_NONE", - "spamModerationLevel": "MODERATE", - "replyTo": "REPLY_TO_IGNORE", - "includeCustomFooter": "false", - "customFooterText": "", - "sendMessageDenyNotification": "false", - "defaultMessageDenyNotificationText": "", - "showInGroupDirectory": "true", - "allowGoogleCommunication": "false", - "membersCanPostAsTheGroup": "false", - "messageDisplayFont": "DEFAULT_FONT", - "includeInGlobalAddressList": "true", - "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", - "whoCanContactOwner": "ANYONE_CAN_CONTACT", - "whoCanAddReferences": "NONE", - "whoCanAssignTopics": "NONE", - "whoCanUnassignTopic": "NONE", - "whoCanTakeTopics": "NONE", - "whoCanMarkDuplicate": "NONE", - "whoCanMarkNoResponseNeeded": "NONE", - "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", - "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanEnterFreeFormTags": "NONE", - "whoCanModifyTagsAndCategories": "NONE", - "favoriteRepliesOnTop": "true", - "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", - "whoCanBanUsers": "OWNERS_AND_MANAGERS", - "whoCanModifyMembers": "OWNERS_AND_MANAGERS", - "whoCanApproveMessages": "OWNERS_AND_MANAGERS", - "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", - "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", - "whoCanLockTopics": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", - "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", - "whoCanHideAbuse": "NONE", - "whoCanMakeTopicsSticky": "NONE", - "whoCanModerateMembers": "OWNERS_AND_MANAGERS", - "whoCanModerateContent": "OWNERS_AND_MANAGERS", - "whoCanAssistContent": "NONE", - "customRolesEnabledForSettingsToBeMerged": "false", - "enableCollaborativeInbox": "false", - "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", - "defaultSender": "DEFAULT_SELF" - }, - { - "kind": "groupsSettings#groups", - "email": "daniel44@example.org", - "name": "Test Hide 2", - "description": "", - "whoCanJoin": "INVITED_CAN_JOIN", - "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", - "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", - "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", - "whoCanAdd": "ALL_MANAGERS_CAN_ADD", - "allowExternalMembers": "false", - "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", - "allowWebPosting": "true", - "primaryLanguage": "en", - "maxMessageBytes": 26214400, - "isArchived": "true", - "archiveOnly": "false", - "messageModerationLevel": "MODERATE_NONE", - "spamModerationLevel": "MODERATE", - "replyTo": "REPLY_TO_IGNORE", - "includeCustomFooter": "false", - "customFooterText": "", - "sendMessageDenyNotification": "false", - "defaultMessageDenyNotificationText": "", - "showInGroupDirectory": "false", - "allowGoogleCommunication": "false", - "membersCanPostAsTheGroup": "false", - "messageDisplayFont": "DEFAULT_FONT", - "includeInGlobalAddressList": "true", - "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", - "whoCanContactOwner": "ALL_IN_DOMAIN_CAN_CONTACT", - "whoCanAddReferences": "NONE", - "whoCanAssignTopics": "OWNERS_AND_MANAGERS", - "whoCanUnassignTopic": "OWNERS_AND_MANAGERS", - "whoCanTakeTopics": "OWNERS_AND_MANAGERS", - "whoCanMarkDuplicate": "OWNERS_AND_MANAGERS", - "whoCanMarkNoResponseNeeded": "OWNERS_AND_MANAGERS", - "whoCanMarkFavoriteReplyOnAnyTopic": "OWNERS_AND_MANAGERS", - "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", - "whoCanUnmarkFavoriteReplyOnAnyTopic": "OWNERS_AND_MANAGERS", - "whoCanEnterFreeFormTags": "OWNERS_AND_MANAGERS", - "whoCanModifyTagsAndCategories": "OWNERS_AND_MANAGERS", - "favoriteRepliesOnTop": "true", - "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", - "whoCanBanUsers": "OWNERS_AND_MANAGERS", - "whoCanModifyMembers": "OWNERS_AND_MANAGERS", - "whoCanApproveMessages": "OWNERS_AND_MANAGERS", - "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", - "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", - "whoCanLockTopics": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", - "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", - "whoCanHideAbuse": "OWNERS_AND_MANAGERS", - "whoCanMakeTopicsSticky": "OWNERS_AND_MANAGERS", - "whoCanModerateMembers": "OWNERS_AND_MANAGERS", - "whoCanModerateContent": "OWNERS_AND_MANAGERS", - "whoCanAssistContent": "OWNERS_AND_MANAGERS", - "customRolesEnabledForSettingsToBeMerged": "false", - "enableCollaborativeInbox": "false", - "whoCanDiscoverGroup": "ALL_MEMBERS_CAN_DISCOVER", - "defaultSender": "DEFAULT_SELF" - }, - { - "kind": "groupsSettings#groups", - "email": "daniel44@example.org", - "name": "Test Group", - "description": "This is for testing purposes", - "whoCanJoin": "CAN_REQUEST_TO_JOIN", - "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", - "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", - "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", - "whoCanAdd": "ALL_MANAGERS_CAN_ADD", - "allowExternalMembers": "false", - "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", - "allowWebPosting": "true", - "primaryLanguage": "en_US", - "maxMessageBytes": 26214400, - "isArchived": "true", - "archiveOnly": "false", - "messageModerationLevel": "MODERATE_NONE", - "spamModerationLevel": "MODERATE", - "replyTo": "REPLY_TO_IGNORE", - "includeCustomFooter": "false", - "customFooterText": "", - "sendMessageDenyNotification": "false", - "defaultMessageDenyNotificationText": "", - "showInGroupDirectory": "true", - "allowGoogleCommunication": "false", - "membersCanPostAsTheGroup": "false", - "messageDisplayFont": "DEFAULT_FONT", - "includeInGlobalAddressList": "true", - "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", - "whoCanContactOwner": "ANYONE_CAN_CONTACT", - "whoCanAddReferences": "NONE", - "whoCanAssignTopics": "NONE", - "whoCanUnassignTopic": "NONE", - "whoCanTakeTopics": "NONE", - "whoCanMarkDuplicate": "NONE", - "whoCanMarkNoResponseNeeded": "NONE", - "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", - "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanEnterFreeFormTags": "NONE", - "whoCanModifyTagsAndCategories": "NONE", - "favoriteRepliesOnTop": "true", - "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", - "whoCanBanUsers": "OWNERS_AND_MANAGERS", - "whoCanModifyMembers": "OWNERS_AND_MANAGERS", - "whoCanApproveMessages": "OWNERS_AND_MANAGERS", - "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", - "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", - "whoCanLockTopics": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", - "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", - "whoCanHideAbuse": "NONE", - "whoCanMakeTopicsSticky": "NONE", - "whoCanModerateMembers": "OWNERS_AND_MANAGERS", - "whoCanModerateContent": "OWNERS_AND_MANAGERS", - "whoCanAssistContent": "NONE", - "customRolesEnabledForSettingsToBeMerged": "false", - "enableCollaborativeInbox": "false", - "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", - "defaultSender": "DEFAULT_SELF" - }, - { - "kind": "groupsSettings#groups", - "email": "daniel44@example.org", - "name": "Test Hiding", - "description": "", - "whoCanJoin": "INVITED_CAN_JOIN", - "whoCanViewMembership": "ALL_IN_DOMAIN_CAN_VIEW", - "whoCanViewGroup": "ALL_IN_DOMAIN_CAN_VIEW", - "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", - "whoCanAdd": "ALL_MANAGERS_CAN_ADD", - "allowExternalMembers": "false", - "whoCanPostMessage": "ALL_IN_DOMAIN_CAN_POST", - "allowWebPosting": "true", - "primaryLanguage": "en_US", - "maxMessageBytes": 26214400, - "isArchived": "true", - "archiveOnly": "false", - "messageModerationLevel": "MODERATE_NONE", - "spamModerationLevel": "MODERATE", - "replyTo": "REPLY_TO_IGNORE", - "includeCustomFooter": "false", - "customFooterText": "", - "sendMessageDenyNotification": "false", - "defaultMessageDenyNotificationText": "", - "showInGroupDirectory": "false", - "allowGoogleCommunication": "false", - "membersCanPostAsTheGroup": "false", - "messageDisplayFont": "DEFAULT_FONT", - "includeInGlobalAddressList": "true", - "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", - "whoCanContactOwner": "ANYONE_CAN_CONTACT", - "whoCanAddReferences": "NONE", - "whoCanAssignTopics": "NONE", - "whoCanUnassignTopic": "NONE", - "whoCanTakeTopics": "NONE", - "whoCanMarkDuplicate": "NONE", - "whoCanMarkNoResponseNeeded": "NONE", - "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", - "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanEnterFreeFormTags": "NONE", - "whoCanModifyTagsAndCategories": "NONE", - "favoriteRepliesOnTop": "true", - "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", - "whoCanBanUsers": "OWNERS_AND_MANAGERS", - "whoCanModifyMembers": "OWNERS_AND_MANAGERS", - "whoCanApproveMessages": "OWNERS_AND_MANAGERS", - "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", - "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", - "whoCanLockTopics": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", - "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", - "whoCanHideAbuse": "NONE", - "whoCanMakeTopicsSticky": "NONE", - "whoCanModerateMembers": "OWNERS_AND_MANAGERS", - "whoCanModerateContent": "OWNERS_AND_MANAGERS", - "whoCanAssistContent": "NONE", - "customRolesEnabledForSettingsToBeMerged": "false", - "enableCollaborativeInbox": "false", - "whoCanDiscoverGroup": "ALL_MEMBERS_CAN_DISCOVER", - "defaultSender": "DEFAULT_SELF" - }, - { - "kind": "groupsSettings#groups", - "email": "daniel44@example.org", - "name": "Terry Eaton", - "description": "", - "whoCanJoin": "INVITED_CAN_JOIN", - "whoCanViewMembership": "ALL_IN_DOMAIN_CAN_VIEW", - "whoCanViewGroup": "ALL_IN_DOMAIN_CAN_VIEW", - "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", - "whoCanAdd": "ALL_MANAGERS_CAN_ADD", - "allowExternalMembers": "false", - "whoCanPostMessage": "ALL_IN_DOMAIN_CAN_POST", - "allowWebPosting": "true", - "primaryLanguage": "en_US", - "maxMessageBytes": 26214400, - "isArchived": "true", - "archiveOnly": "false", - "messageModerationLevel": "MODERATE_NONE", - "spamModerationLevel": "MODERATE", - "replyTo": "REPLY_TO_IGNORE", - "includeCustomFooter": "false", - "customFooterText": "", - "sendMessageDenyNotification": "false", - "defaultMessageDenyNotificationText": "", - "showInGroupDirectory": "true", - "allowGoogleCommunication": "false", - "membersCanPostAsTheGroup": "false", - "messageDisplayFont": "DEFAULT_FONT", - "includeInGlobalAddressList": "true", - "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", - "whoCanContactOwner": "ANYONE_CAN_CONTACT", - "whoCanAddReferences": "NONE", - "whoCanAssignTopics": "NONE", - "whoCanUnassignTopic": "NONE", - "whoCanTakeTopics": "NONE", - "whoCanMarkDuplicate": "NONE", - "whoCanMarkNoResponseNeeded": "NONE", - "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", - "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", - "whoCanEnterFreeFormTags": "NONE", - "whoCanModifyTagsAndCategories": "NONE", - "favoriteRepliesOnTop": "true", - "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", - "whoCanBanUsers": "OWNERS_AND_MANAGERS", - "whoCanModifyMembers": "OWNERS_AND_MANAGERS", - "whoCanApproveMessages": "OWNERS_AND_MANAGERS", - "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", - "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", - "whoCanLockTopics": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", - "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", - "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", - "whoCanHideAbuse": "NONE", - "whoCanMakeTopicsSticky": "NONE", - "whoCanModerateMembers": "OWNERS_AND_MANAGERS", - "whoCanModerateContent": "OWNERS_AND_MANAGERS", - "whoCanAssistContent": "NONE", - "customRolesEnabledForSettingsToBeMerged": "false", - "enableCollaborativeInbox": "false", - "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", - "defaultSender": "DEFAULT_SELF" - } - ], - "successful_calls": [ - "get_dkim_records", - "directory/v1/orgunits/list", - "directory/v1/groups/list", - "get_dmarc_records", - "directory/v1/users/list", - "reports/v1/activities/list", - "groups-settings/v1/groups/get", - "get_spf_records", - "directory/v1/domains/list" - ], - "unsuccessful_calls": [] - } +{ + "MetaData": { + "TenantId": null, + "DisplayName": null, + "DomainName": "example.org", + "ProductSuite": "GWS", + "ProductsAssessed": [ + "Google Calendar", + "Google Chat", + "Google Classroom", + "Common Controls", + "Google Drive and Docs", + "Gmail", + "Groups for Business", + "Google Meet", + "Rules", + "Google Sites" + ], + "ProductAbbreviationMapping": { + "Gmail": "gmail", + "Google Calendar": "calendar", + "Groups for Business": "groups", + "Google Chat": "chat", + "Google Drive and Docs": "drive", + "Google Meet": "meet", + "Google Sites": "sites", + "Common Controls": "commoncontrols", + "Rules": "rules", + "Google Classroom": "classroom" + }, + "Tool": "ScubaGoggles", + "ToolVersion": "0.3.0", + "TimeStampZulu": "2024-10-11T21:01:08.026Z" + }, + "Summary": { + "calendar": { + "Manual": 1, + "Passes": 4, + "Errors": 0, + "Failures": 1, + "Warnings": 0, + "Omit": 0 + }, + "chat": { + "Manual": 0, + "Passes": 7, + "Errors": 0, + "Failures": 0, + "Warnings": 0, + "Omit": 1 + }, + "classroom": { + "Manual": 0, + "Passes": 6, + "Errors": 0, + "Failures": 0, + "Warnings": 0, + "Omit": 0 + }, + "commoncontrols": { + "Manual": 14, + "Passes": 12, + "Errors": 0, + "Failures": 6, + "Warnings": 0, + "Omit": 0 + }, + "drive": { + "Manual": 0, + "Passes": 10, + "Errors": 0, + "Failures": 3, + "Warnings": 3, + "Omit": 1 + }, + "gmail": { + "Manual": 13, + "Passes": 25, + "Errors": 0, + "Failures": 5, + "Warnings": 2, + "Omit": 0 + }, + "groups": { + "Manual": 0, + "Passes": 6, + "Errors": 0, + "Failures": 0, + "Warnings": 1, + "Omit": 0 + }, + "meet": { + "Manual": 0, + "Passes": 5, + "Errors": 0, + "Failures": 0, + "Warnings": 0, + "Omit": 0 + }, + "rules": { + "Manual": 35, + "Passes": 3, + "Errors": 0, + "Failures": 1, + "Warnings": 0, + "Omit": 0 + }, + "sites": { + "Manual": 0, + "Passes": 1, + "Errors": 0, + "Failures": 0, + "Warnings": 0, + "Omit": 0 + } + }, + "Results": { + "calendar": [ + { + "GroupName": "External Sharing Options", + "GroupNumber": "1", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/calendar.md#1-External-Sharing-Options", + "Controls": [ + { + "Control ID": "GWS.CALENDAR.1.1v0.3", + "Requirement": "External Sharing Options for Primary Calendars SHALL be configured to "Only free/busy information (hide event details)."", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.CALENDAR.1.2v0.3", + "Requirement": "External sharing options for secondary calendars SHALL be configured to "Only free/busy information (hide event details)."", + "Result": "Fail", + "Criticality": "Shall", + "Details": "Requirement not met.
    Highest Level of Sharing: Share all information, and outsiders can change calendars." + } + ] + }, + { + "GroupName": "External Invitations Warnings", + "GroupNumber": "2", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/calendar.md#2-External-Invitations-Warnings", + "Controls": [ + { + "Control ID": "GWS.CALENDAR.2.1v0.3", + "Requirement": "External invitations warnings SHALL be enabled to prompt users before sending invitations.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Calendar Interop Management", + "GroupNumber": "3", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/calendar.md#3-Calendar-Interop-Management", + "Controls": [ + { + "Control ID": "GWS.CALENDAR.3.1v0.3", + "Requirement": "Calendar Interop SHOULD be disabled.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met." + }, + { + "Control ID": "GWS.CALENDAR.3.2v0.3", + "Requirement": "OAuth 2.0 SHALL be used in lieu of basic authentication to establish connectivity between tenants or organizations in cases where Calendar Interop is deemed necessary for agency mission fulfillment.", + "Result": "N/A", + "Criticality": "Shall/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + } + ] + }, + { + "GroupName": "Paid Appointments", + "GroupNumber": "4", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/calendar.md#4-Paid-Appointments", + "Controls": [ + { + "Control ID": "GWS.CALENDAR.4.1v0.3", + "Requirement": "Appointment Schedule with Payments SHALL be disabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + } + ], + "chat": [ + { + "GroupName": "Chat History", + "GroupNumber": "1", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/chat.md#1-Chat-History", + "Controls": [ + { + "Control ID": "GWS.CHAT.1.1v0.3", + "Requirement": "Chat history SHALL be enabled for information traceability.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.CHAT.1.2v0.3", + "Requirement": "Users SHALL NOT be allowed to change their history setting.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "External File Sharing", + "GroupNumber": "2", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/chat.md#2-External-File-Sharing", + "Controls": [ + { + "Control ID": "GWS.CHAT.2.1v0.3", + "Requirement": "External file sharing SHALL be disabled to protect sensitive information from unauthorized or accidental sharing.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "History for Spaces", + "GroupNumber": "3", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/chat.md#3-History-for-Spaces", + "Controls": [ + { + "Control ID": "GWS.CHAT.3.1v0.3", + "Requirement": "Space history SHOULD be enabled for traceability of information.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "External Chat Messaging", + "GroupNumber": "4", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/chat.md#4-External-Chat-Messaging", + "Controls": [ + { + "Control ID": "GWS.CHAT.4.1v0.3", + "Requirement": "External Chat messaging SHALL be restricted to allowlisted domains only.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "DLP rules", + "GroupNumber": "5", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/chat.md#5-DLP-rules", + "Controls": [ + { + "Control ID": "GWS.CHAT.5.1v0.3", + "Requirement": "Agencies SHOULD configure DLP rules to block or warn on sharing files with sensitive data.", + "Result": "Omitted", + "Criticality": "Should/Not-Implemented", + "Details": "Test omitted by user. The DLP capability required by the baselines is implemented by third party product, [x], which ScubaGoggles does not have the ability to check." + } + ] + }, + { + "GroupName": "Content Reporting", + "GroupNumber": "6", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/chat.md#6-Content-Reporting", + "Controls": [ + { + "Control ID": "GWS.CHAT.6.1v0.3", + "Requirement": "Chat content reporting SHALL be enabled for all conversation types.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups.
    WARNING: from the log events alone, it is not possible to distinguish between an OU inheriting settings from its parent and content reporting being disabled entirely. It's possible this tool classified some child OUs as compliant due to this limitation; manual check recommended for child OUs due to this edge case." + }, + { + "Control ID": "GWS.CHAT.6.2v0.3", + "Requirement": "All reporting message categories SHOULD be selected.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + } + ] + } + ], + "classroom": [ + { + "GroupName": "Class Membership", + "GroupNumber": "1", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/classroom.md#1-Class-Membership", + "Controls": [ + { + "Control ID": "GWS.CLASSROOM.1.1v0.3", + "Requirement": "Who can join classes in your domain SHALL be set to Users in your domain only.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.CLASSROOM.1.2v0.3", + "Requirement": "Which classes users in your domain can join SHALL be set to Classes in your domain only.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Classroom API", + "GroupNumber": "2", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/classroom.md#2-Classroom-API", + "Controls": [ + { + "Control ID": "GWS.CLASSROOM.2.1v0.3", + "Requirement": "Users SHALL NOT be able to authorize apps to access their Google Classroom data.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Roster Import", + "GroupNumber": "3", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/classroom.md#3-Roster-Import", + "Controls": [ + { + "Control ID": "GWS.CLASSROOM.3.1v0.3", + "Requirement": "Roster import with Clever SHOULD be turned off.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Student Unenrollment", + "GroupNumber": "4", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/classroom.md#4-Student-Unenrollment", + "Controls": [ + { + "Control ID": "GWS.CLASSROOM.4.1v0.3", + "Requirement": "Only teachers SHALL be allowed to unenroll students from classes.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Class Creation", + "GroupNumber": "5", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/classroom.md#5-Class-Creation", + "Controls": [ + { + "Control ID": "GWS.CLASSROOM.5.1v0.3", + "Requirement": "Class creation SHALL be restricted to verified teachers only.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + } + ], + "commoncontrols": [ + { + "GroupName": "Phishing-Resistant Multi-Factor Authentication", + "GroupNumber": "1", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#1-Phishing-Resistant-Multi-Factor-Authentication", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.1.1v0.3", + "Requirement": "Phishing-Resistant MFA SHALL be required for all users.", + "Result": "No events found", + "Criticality": "Shall", + "Details": " No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended." + }, + { + "Control ID": "GWS.COMMONCONTROLS.1.2v0.3", + "Requirement": "Google 2SV new user enrollment period SHALL be set to 1 week.", + "Result": "Fail", + "Criticality": "Shall", + "Details": "The following OUs are non-compliant:
    • Org Name: New user enrollment period is set to 6 months
    " + }, + { + "Control ID": "GWS.COMMONCONTROLS.1.3v0.3", + "Requirement": "Allow users to trust the device SHALL be disabled.", + "Result": "Fail", + "Criticality": "Shall", + "Details": "The following groups are non-compliant:
    • wilsondennis@example.org: Allow user to trust the device is ON
    " + }, + { + "Control ID": "GWS.COMMONCONTROLS.1.4v0.3", + "Requirement": "If phishing-resistant MFA is not yet tenable, an MFA method from the following list SHALL be used in the interim.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Context-aware Access", + "GroupNumber": "2", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#2-Context-aware-Access", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.2.1v0.3", + "Requirement": "Policies restricting access to GWS based on signals about enterprise devices SHOULD be implemented.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met." + } + ] + }, + { + "GroupName": "Login Challenges", + "GroupNumber": "3", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#3-Login-Challenges", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.3.1v0.3", + "Requirement": "Login Challenges SHALL be enabled when third party SAML SSO is in use.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "User Session Duration", + "GroupNumber": "4", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#4-User-Session-Duration", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.4.1v0.3", + "Requirement": "Users SHALL be forced to re-authenticate after an established 12-hour GWS login session has expired.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Secure Passwords", + "GroupNumber": "5", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#5-Secure-Passwords", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.5.1v0.3", + "Requirement": "User password strength SHALL be enforced.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.COMMONCONTROLS.5.2v0.3", + "Requirement": "User password length SHALL be at least 12 characters.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.COMMONCONTROLS.5.3v0.3", + "Requirement": "Password policy SHALL be enforced at next sign-in.", + "Result": "Fail", + "Criticality": "Shall", + "Details": "The following OUs are non-compliant:
    • Org Name: Enforce password policy at next sign-in is OFF
    " + }, + { + "Control ID": "GWS.COMMONCONTROLS.5.4v0.3", + "Requirement": "User passwords SHALL NOT be reused.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.COMMONCONTROLS.5.5v0.3", + "Requirement": "User passwords SHALL NOT expire.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Highly Privileged Accounts", + "GroupNumber": "6", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#6-Highly-Privileged-Accounts", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.6.1v0.3", + "Requirement": "All highly privileged accounts SHALL leverage Google Account authentication with phishing-resistant MFA and not the agency's authoritative on-premises or federated identity system.", + "Result": "N/A", + "Criticality": "Shall/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + }, + { + "Control ID": "GWS.COMMONCONTROLS.6.2v0.3", + "Requirement": "A minimum of **two** and maximum of **eight** separate and distinct super admin users SHALL be configured.", + "Result": "Fail", + "Criticality": "Shall", + "Details": "The following super admins are configured: wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org, wilsondennis@example.org. Note: Exceptions are allowed for \"break glass\" super admin accounts, though we are not able to account for this automatically." + } + ] + }, + { + "GroupName": "Conflicting Account Management", + "GroupNumber": "7", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#7-Conflicting-Account-Management", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.7.1v0.3", + "Requirement": "Account conflict management SHALL be configured to replace conflicting unmanaged accounts with managed ones.", + "Result": "N/A", + "Criticality": "Shall/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + } + ] + }, + { + "GroupName": "Catastrophic Recovery Options for Super Admins", + "GroupNumber": "8", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#8-Catastrophic-Recovery-Options-for-Super-Admins", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.8.1v0.3", + "Requirement": "Account self-recovery for Super Admins SHALL be disabled", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "GWS Advanced Protection Program", + "GroupNumber": "9", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#9-GWS-Advanced-Protection-Program", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.9.1v0.3", + "Requirement": "Highly privileged accounts SHALL be enrolled in the GWS Advanced Protection Program.", + "Result": "N/A", + "Criticality": "Shall/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + }, + { + "Control ID": "GWS.COMMONCONTROLS.9.2v0.3", + "Requirement": "All sensitive user accounts SHOULD be enrolled into the GWS Advanced Protection Program.", + "Result": "N/A", + "Criticality": "Should/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + } + ] + }, + { + "GroupName": "App Access to Google APIs", + "GroupNumber": "10", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#10-App-Access-to-Google-APIs", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.10.1v0.3", + "Requirement": "Agencies SHALL use GWS application access control policies to restrict access to all GWS services by third party apps.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met." + }, + { + "Control ID": "GWS.COMMONCONTROLS.10.2v0.3", + "Requirement": "Agencies SHALL NOT allow users to consent to access to low-risk scopes.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met." + }, + { + "Control ID": "GWS.COMMONCONTROLS.10.3v0.3", + "Requirement": "Agencies SHALL NOT trust unconfigured internal apps.", + "Result": "No events found", + "Criticality": "Shall", + "Details": " No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended." + }, + { + "Control ID": "GWS.COMMONCONTROLS.10.4v0.3", + "Requirement": "Agencies SHALL NOT allow users to access unconfigured third-party apps.", + "Result": "No events found", + "Criticality": "Shall", + "Details": " No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended." + } + ] + }, + { + "GroupName": "Authorized Google Marketplace Apps", + "GroupNumber": "11", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#11-Authorized-Google-Marketplace-Apps", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.11.1v0.3", + "Requirement": "Only approved Google Workspace Marketplace applications SHALL be allowed for installation.", + "Result": "Fail", + "Criticality": "Shall", + "Details": "The following OUs are non-compliant:
    • Org Name: Users can install and run any internal app, even if it's not allowlisted
    " + }, + { + "Control ID": "GWS.COMMONCONTROLS.11.2v0.3", + "Requirement": "Access to Google Workspace applications by less secure apps that do not meet security standards for authentication SHALL be prevented.", + "Result": "No events found", + "Criticality": "Should", + "Details": " No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is compliant; manual check recommended." + } + ] + }, + { + "GroupName": "Google Takeout Services for Users", + "GroupNumber": "12", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#12-Google-Takeout-Services-for-Users", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.12.1v0.3", + "Requirement": "Google Takeout services SHALL be disabled.", + "Result": "No events found", + "Criticality": "Shall", + "Details": " No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended." + } + ] + }, + { + "GroupName": "System-defined Rules", + "GroupNumber": "13", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#13-System-defined-Rules", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Requirement": "Required system-defined alerting rules, as listed in the Policy group description, SHALL be enabled with alerts.", + "Result": "N/A", + "Criticality": "Shall/Not-Implemented", + "Details": "Results for GWS.COMMONCONTROLS.13 are listed in the Rules Report." + } + ] + }, + { + "GroupName": "Google Workspace Logs", + "GroupNumber": "14", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#14-Google-Workspace-Logs", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.14.1v0.3", + "Requirement": "The following critical logs SHALL be sent to the agency's centralized SIEM.", + "Result": "N/A", + "Criticality": "Shall/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + }, + { + "Control ID": "GWS.COMMONCONTROLS.14.2v0.3", + "Requirement": "Audit logs SHALL be maintained for at least 6 months in active storage and an additional 18 months in cold storage, as dictated by OMB M-21-31.", + "Result": "N/A", + "Criticality": "Shall/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + } + ] + }, + { + "GroupName": "Data Regions and Storage", + "GroupNumber": "15", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#15-Data-Regions-and-Storage", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.15.1v0.3", + "Requirement": "The data storage region SHALL be set to be the United States for all users in the agency's GWS environment.", + "Result": "N/A", + "Criticality": "Shall/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + }, + { + "Control ID": "GWS.COMMONCONTROLS.15.2v0.3", + "Requirement": "The supplemental data storage region SHALL NOT be set to 'Russian Federation'.", + "Result": "No events found", + "Criticality": "Shall", + "Details": " No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is compliant; manual check recommended." + } + ] + }, + { + "GroupName": "Additional Google Services", + "GroupNumber": "16", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#16-Additional-Google-Services", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.16.1v0.3", + "Requirement": "Service status for Google services that do not have an individual control SHOULD be set to OFF for everyone.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Multi-Party Approval", + "GroupNumber": "17", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#17-Multi-Party-Approval", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.17.1v0.3", + "Requirement": "Require multi party approval for sensitive admin actions SHALL be enabled.", + "Result": "Fail", + "Criticality": "Shall", + "Details": "The following OUs are non-compliant:
    • Org Name: Require multi party approval for sensitive admin actions is DISABLED
    " + } + ] + } + ], + "drive": [ + { + "GroupName": "Sharing Outside the Organization", + "GroupNumber": "1", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/drive.md#1-Sharing-Outside-the-Organization", + "Controls": [ + { + "Control ID": "GWS.DRIVEDOCS.1.1v0.3", + "Requirement": "Agencies SHOULD disable sharing outside of the organization's domain.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.DRIVEDOCS.1.2v0.3", + "Requirement": "Agencies SHOULD disable users' receiving files from outside of the organization's domain.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.DRIVEDOCS.1.3v0.3", + "Requirement": "Warnings SHALL be enabled when a user is attempting to share something outside the domain.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.DRIVEDOCS.1.4v0.3", + "Requirement": "If sharing outside of the organization, then agencies SHALL disable sharing of files with individuals who are not using a Google account.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.DRIVEDOCS.1.5v0.3", + "Requirement": "Agencies SHALL disable making files and published web content visible to anyone with the link.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.DRIVEDOCS.1.6v0.3", + "Requirement": "Agencies SHALL set access checking to recipients only.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.DRIVEDOCS.1.7v0.3", + "Requirement": "Agencies SHALL NOT allow any users to distribute content from an organization-owned shared drive to shared drives owned by another organization.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.DRIVEDOCS.1.8v0.3", + "Requirement": "Agencies SHALL set newly created items to have Private to the Owner as the default level of access.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Shared Drive Creation", + "GroupNumber": "2", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/drive.md#2-Shared-Drive-Creation", + "Controls": [ + { + "Control ID": "GWS.DRIVEDOCS.2.1v0.3", + "Requirement": "Agencies SHOULD NOT allow members with manager access to override shared drive creation settings.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.DRIVEDOCS.2.2v0.3", + "Requirement": "Agencies SHOULD NOT allow users outside of their organization to access files in shared drives.", + "Result": "Warning", + "Criticality": "Should", + "Details": "The following OUs are non-compliant:
    • Org Name: Users outside the organization can access files in shared drives
    " + }, + { + "Control ID": "GWS.DRIVEDOCS.2.3v0.3", + "Requirement": "Agencies SHALL allow users who are not shared drive members to be added to files.", + "Result": "Fail", + "Criticality": "Shall", + "Details": "The following OUs are non-compliant:
    • Org Name: People who aren't shared drive members can be added to files
    " + }, + { + "Control ID": "GWS.DRIVEDOCS.2.4v0.3", + "Requirement": "Agencies SHALL NOT allow viewers and commenters to download, print, and copy files.", + "Result": "Fail", + "Criticality": "Shall", + "Details": "The following OUs are non-compliant:
    • Org Name: Viewers and commenters are allowed to download, print, and copy files
    " + } + ] + }, + { + "GroupName": "Security Updates for Files", + "GroupNumber": "3", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/drive.md#3-Security-Updates-for-Files", + "Controls": [ + { + "Control ID": "GWS.DRIVEDOCS.3.1v0.3", + "Requirement": "Agencies SHALL enable the security update for Drive files.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Drive SDK", + "GroupNumber": "4", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/drive.md#4-Drive-SDK", + "Controls": [ + { + "Control ID": "GWS.DRIVEDOCS.4.1v0.3", + "Requirement": "Agencies SHOULD disable Drive SDK access.", + "Result": "Warning", + "Criticality": "Should", + "Details": "The following OUs are non-compliant:
    • Mrs. Victoria Phillips PhD: Drive SDK is enabled
    " + } + ] + }, + { + "GroupName": "User Installation of Drive and Docs Add-Ons", + "GroupNumber": "5", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/drive.md#5-User-Installation-of-Drive-and-Docs-Add-Ons", + "Controls": [ + { + "Control ID": "GWS.DRIVEDOCS.5.1v0.3", + "Requirement": "Agencies SHALL disable Add-Ons.", + "Result": "Fail", + "Criticality": "Shall", + "Details": "The following OUs are non-compliant:
    • Org Name: Users can install Google Docs add-ons from add-ons store.
    " + } + ] + }, + { + "GroupName": "Drive for Desktop", + "GroupNumber": "6", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/drive.md#6-Drive-for-Desktop", + "Controls": [ + { + "Control ID": "GWS.DRIVEDOCS.6.1v0.3", + "Requirement": "Google Drive for Desktop SHOULD be enabled only for authorized devices.", + "Result": "Warning", + "Criticality": "Should", + "Details": "The following groups are non-compliant:
    • ewalker@example.org: Drive for Desktop is enabled and can be used on any device.
    • ewalker@example.org: Drive for Desktop is enabled and can be used on any device.
    • ewalker@example.org: Drive for Desktop is enabled and can be used on any device.
    " + } + ] + }, + { + "GroupName": "DLP rules", + "GroupNumber": "7", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/drive.md#7-DLP-rules", + "Controls": [ + { + "Control ID": "GWS.DRIVEDOCS.7.1v0.3", + "Requirement": "Agencies SHOULD configure DLP rules to block or warn on sharing files with sensitive data.", + "Result": "Omitted", + "Criticality": "Should/Not-Implemented", + "Details": "Test omitted by user. The DLP capability required by the baselines is implemented by third party product, [x], which ScubaGoggles does not have the ability to check." + } + ] + } + ], + "gmail": [ + { + "GroupName": "Mail Delegation", + "GroupNumber": "1", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#1-Mail-Delegation", + "Controls": [ + { + "Control ID": "GWS.GMAIL.1.1v0.3", + "Requirement": "Mail Delegation SHOULD be disabled.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "DomainKeys Identified Mail", + "GroupNumber": "2", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#2-DomainKeys-Identified-Mail", + "Controls": [ + { + "Control ID": "GWS.GMAIL.2.1v0.3", + "Requirement": "DKIM SHOULD be enabled for all domains.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met." + } + ] + }, + { + "GroupName": "Sender Policy Framework", + "GroupNumber": "3", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#3-Sender-Policy-Framework", + "Controls": [ + { + "Control ID": "GWS.GMAIL.3.1v0.3", + "Requirement": "An SPF policy SHALL be published for each domain that fails all non-approved senders.", + "Result": "Fail", + "Criticality": "Shall", + "Details": "1 of 2 agency domain(s) found in violation: example.org." + } + ] + }, + { + "GroupName": "Domain-based Message Authentication, Reporting, and Conformance", + "GroupNumber": "4", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#4-Domain-based-Message-Authentication,-Reporting,-and-Conformance", + "Controls": [ + { + "Control ID": "GWS.GMAIL.4.1v0.3", + "Requirement": "A DMARC policy SHALL be published for every second-level domain.", + "Result": "Fail", + "Criticality": "Shall", + "Details": "1 of 2 agency domain(s) found in violation: example.org." + }, + { + "Control ID": "GWS.GMAIL.4.2v0.3", + "Requirement": "The DMARC message rejection option SHALL be p=reject.", + "Result": "Fail", + "Criticality": "Shall", + "Details": "1 of 2 agency domain(s) found in violation: example.org." + }, + { + "Control ID": "GWS.GMAIL.4.3v0.3", + "Requirement": "The DMARC point of contact for aggregate reports SHALL include `reports@dmarc.cyber.dhs.gov`.", + "Result": "Fail", + "Criticality": "Shall", + "Details": "1 of 2 agency domain(s) found in violation: example.org." + }, + { + "Control ID": "GWS.GMAIL.4.4v0.3", + "Requirement": "An agency point of contact SHOULD be included for aggregate and failure reports.", + "Result": "Warning", + "Criticality": "Should", + "Details": "1 of 2 agency domain(s) found in violation: example.org." + } + ] + }, + { + "GroupName": "Attachment Protections", + "GroupNumber": "5", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#5-Attachment-Protections", + "Controls": [ + { + "Control ID": "GWS.GMAIL.5.1v0.3", + "Requirement": "Protect against encrypted attachments from untrusted senders SHALL be enabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.5.2v0.3", + "Requirement": "Protect against attachments with scripts from untrusted senders SHALL be enabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.5.3v0.3", + "Requirement": "Protect against anomalous attachment types in emails SHALL be enabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.5.4v0.3", + "Requirement": "Google SHOULD be allowed to automatically apply future recommended settings for attachments.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.5.5v0.3", + "Requirement": "Emails flagged by the above attachment protection controls SHALL NOT be kept in inbox.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.5.6v0.3", + "Requirement": "Any third-party or outside application selected for attachment protection SHOULD offer services comparable to those offered by Google Workspace.", + "Result": "N/A", + "Criticality": "Should/Not-Implemented", + "Details": "Currently not able to be tested automatically; please check manually." + } + ] + }, + { + "GroupName": "Links and External Images Protection", + "GroupNumber": "6", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#6-Links-and-External-Images-Protection", + "Controls": [ + { + "Control ID": "GWS.GMAIL.6.1v0.3", + "Requirement": "Identify links behind shortened URLs SHALL be enabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.6.2v0.3", + "Requirement": "Scan linked images SHALL be enabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.6.3v0.3", + "Requirement": "Show warning prompt for any click on links to untrusted domains SHALL be enabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.6.4v0.3", + "Requirement": "Google SHALL be allowed to automatically apply future recommended settings for links and external images.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.6.5v0.3", + "Requirement": "Any third-party or outside application selected for links and external images protection SHOULD offer services comparable to those offered by Google Workspace.", + "Result": "N/A", + "Criticality": "Should/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + } + ] + }, + { + "GroupName": "Spoofing and Authentication Protection", + "GroupNumber": "7", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#7-Spoofing-and-Authentication-Protection", + "Controls": [ + { + "Control ID": "GWS.GMAIL.7.1v0.3", + "Requirement": "Protect against domain spoofing based on similar domain names SHALL be enabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.7.2v0.3", + "Requirement": "Protect against spoofing of employee names SHALL be enabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.7.3v0.3", + "Requirement": "Protect against inbound emails spoofing your domain SHALL be enabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.7.4v0.3", + "Requirement": "Protect against any unauthenticated emails SHALL be enabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.7.5v0.3", + "Requirement": "Protect your Groups from inbound emails spoofing your domain SHALL be enabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.7.6v0.3", + "Requirement": "Emails flagged by the above spoofing and authentication controls SHALL NOT be kept in inbox.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.7.7v0.3", + "Requirement": "Google SHALL be allowed to automatically apply future recommended settings for spoofing and authentication.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.7.8v0.3", + "Requirement": "Any third-party or outside application selected for spoofing and authentication protection SHOULD offer services comparable to those offered by Google Workspace.", + "Result": "N/A", + "Criticality": "Should/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + } + ] + }, + { + "GroupName": "User Email Uploads", + "GroupNumber": "8", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#8-User-Email-Uploads", + "Controls": [ + { + "Control ID": "GWS.GMAIL.8.1v0.3", + "Requirement": "User email uploads SHALL be disabled to protect against unauthorized files being introduced into the secured environment.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "POP and IMAP Access for Users", + "GroupNumber": "9", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#9-POP-and-IMAP-Access-for-Users", + "Controls": [ + { + "Control ID": "GWS.GMAIL.9.1v0.3", + "Requirement": "POP and IMAP access SHALL be disabled to protect sensitive agency or organization emails from being accessed through legacy applications or other third-party mail clients.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Google Workspace Sync", + "GroupNumber": "10", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#10-Google-Workspace-Sync", + "Controls": [ + { + "Control ID": "GWS.GMAIL.10.1v0.3", + "Requirement": "Google Workspace Sync SHOULD be disabled.", + "Result": "Fail", + "Criticality": "Shall", + "Details": "The following OUs are non-compliant:
    • Bradley Martin: Automatically enable outlook sync is set to enabled
    " + }, + { + "Control ID": "GWS.GMAIL.10.2v0.3", + "Requirement": "Google Workspace Sync MAY be enabled on a per-user basis as needed.", + "Result": "N/A", + "Criticality": "May/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + } + ] + }, + { + "GroupName": "Automatic Forwarding", + "GroupNumber": "11", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#11-Automatic-Forwarding", + "Controls": [ + { + "Control ID": "GWS.GMAIL.11.1v0.3", + "Requirement": "Automatic forwarding SHOULD be disabled, especially to external domains.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Per-user Outbound Gateways", + "GroupNumber": "12", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#12-Per-user-Outbound-Gateways", + "Controls": [ + { + "Control ID": "GWS.GMAIL.12.1v0.3", + "Requirement": "Using a per-user outbound gateway that is a mail server other than the Google Workspace mail servers SHALL be disabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Unintended External Reply Warning", + "GroupNumber": "13", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#13-Unintended-External-Reply-Warning", + "Controls": [ + { + "Control ID": "GWS.GMAIL.13.1v0.3", + "Requirement": "Unintended external reply warnings SHALL be enabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Email Allowlist", + "GroupNumber": "14", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#14-Email-Allowlist", + "Controls": [ + { + "Control ID": "GWS.GMAIL.14.1v0.3", + "Requirement": "An email allowlist SHOULD not be implemented.", + "Result": "Warning", + "Criticality": "Should", + "Details": "Email allowlists are enabled in Org Name." + } + ] + }, + { + "GroupName": "Enhanced Pre-Delivery Message Scanning", + "GroupNumber": "15", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#15-Enhanced-Pre-Delivery-Message-Scanning", + "Controls": [ + { + "Control ID": "GWS.GMAIL.15.1v0.3", + "Requirement": "Enhanced pre-delivery message scanning SHALL be enabled to prevent phishing.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.15.2v0.3", + "Requirement": "Any third-party or outside application selected for enhanced pre-delivery message scanning SHOULD offer services comparable to those offered by Google Workspace.", + "Result": "N/A", + "Criticality": "Should/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + } + ] + }, + { + "GroupName": "Security Sandbox", + "GroupNumber": "16", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#16-Security-Sandbox", + "Controls": [ + { + "Control ID": "GWS.GMAIL.16.1v0.3", + "Requirement": "Security sandbox SHOULD be enabled to provide additional protections for their email messages.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + }, + { + "Control ID": "GWS.GMAIL.16.2v0.3", + "Requirement": "Any third-party or outside application selected for security sandbox SHOULD offer services comparable to those offered by Google Workspace.", + "Result": "N/A", + "Criticality": "Should/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + } + ] + }, + { + "GroupName": "Comprehensive Mail Storage", + "GroupNumber": "17", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#17-Comprehensive-Mail-Storage", + "Controls": [ + { + "Control ID": "GWS.GMAIL.17.1v0.3", + "Requirement": "Comprehensive mail storage SHOULD be enabled to allow tracking of information across applications.", + "Result": "N/A", + "Criticality": "Should/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + } + ] + }, + { + "GroupName": "Content Compliance Filtering", + "GroupNumber": "18", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#18-Content-Compliance-Filtering", + "Controls": [ + { + "Control ID": "GWS.GMAIL.18.1v0.3", + "Requirement": "Content filtering SHOULD be enabled within Gmail messages.", + "Result": "N/A", + "Criticality": "Should/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + }, + { + "Control ID": "GWS.GMAIL.18.2v0.3", + "Requirement": "Any third-party or outside application selected for advanced email content filtering SHOULD offer services comparable to those offered by Google Workspace.", + "Result": "N/A", + "Criticality": "Should/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + }, + { + "Control ID": "GWS.GMAIL.18.3v0.3", + "Requirement": "Gmail or third-party applications SHALL be configured to protect PII and sensitive information as defined by the agency. At a minimum, credit card numbers, taxpayer Identification Numbers (TIN), and Social Security Numbers (SSN) SHALL be blocked.", + "Result": "N/A", + "Criticality": "Shall/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + } + ] + }, + { + "GroupName": "Spam Filtering", + "GroupNumber": "19", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/gmail.md#19-Spam-Filtering", + "Controls": [ + { + "Control ID": "GWS.GMAIL.19.1v0.3", + "Requirement": "Domains SHALL NOT be added to lists that bypass spam filters.", + "Result": "N/A", + "Criticality": "Shall/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + }, + { + "Control ID": "GWS.GMAIL.19.2v0.3", + "Requirement": "Domains SHALL NOT be added to lists that bypass spam filters and hide warnings.", + "Result": "N/A", + "Criticality": "Shall/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + }, + { + "Control ID": "GWS.GMAIL.19.3v0.3", + "Requirement": "Bypass spam filters and hide warnings for all messages from internal and external senders SHALL NOT be enabled.", + "Result": "N/A", + "Criticality": "Shall/Not-Implemented", + "Details": "Currently not able to be tested automatically; please manually check." + } + ] + } + ], + "groups": [ + { + "GroupName": "External Group Access", + "GroupNumber": "1", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/groups.md#1-External-Group-Access", + "Controls": [ + { + "Control ID": "GWS.GROUPS.1.1v0.3", + "Requirement": "Group access from outside the organization SHALL be disabled unless explicitly granted by the group owner.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Adding External Members", + "GroupNumber": "2", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/groups.md#2-Adding-External-Members", + "Controls": [ + { + "Control ID": "GWS.GROUPS.2.1v0.3", + "Requirement": "Group owners' ability to add external members to groups SHOULD be disabled unless necessary for agency mission fulfillment.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Allowing Posting by External Members", + "GroupNumber": "3", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/groups.md#3-Allowing-Posting-by-External-Members", + "Controls": [ + { + "Control ID": "GWS.GROUPS.3.1v0.3", + "Requirement": "Group owners' ability to allow posting to a group by an external, non-group member SHOULD be disabled unless necessary for agency mission fulfillment.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Group Creation", + "GroupNumber": "4", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/groups.md#4-Group-Creation", + "Controls": [ + { + "Control ID": "GWS.GROUPS.4.1v0.3", + "Requirement": "Group creation SHOULD be restricted to admins within the organization unless necessary for agency mission fulfillment.", + "Result": "Warning", + "Criticality": "Should", + "Details": "The following OUs are non-compliant:
    • Org Name: Anyone on the internet can create groups
    " + } + ] + }, + { + "GroupName": "Default Permissions for Viewing Conversations", + "GroupNumber": "5", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/groups.md#5-Default-Permissions-for-Viewing-Conversations", + "Controls": [ + { + "Control ID": "GWS.GROUPS.5.1v0.3", + "Requirement": "The default permission to view conversations SHOULD be set to All Group Members.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Ability to Hide Groups from the Directory", + "GroupNumber": "6", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/groups.md#6-Ability-to-Hide-Groups-from-the-Directory", + "Controls": [ + { + "Control ID": "GWS.GROUPS.6.1v0.3", + "Requirement": "The Ability for Groups to be Hidden from the Directory SHALL be disabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "New Groups", + "GroupNumber": "7", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/groups.md#7-New-Groups", + "Controls": [ + { + "Control ID": "GWS.GROUPS.7.1v0.3", + "Requirement": "New Groups SHOULD be created with an Access type of Restricted unless necessary for agency mission fulfillment.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all groups." + } + ] + } + ], + "meet": [ + { + "GroupName": "Meeting Access", + "GroupNumber": "1", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/meet.md#1-Meeting-Access", + "Controls": [ + { + "Control ID": "GWS.MEET.1.1v0.3", + "Requirement": "Meeting access SHOULD be restricted to users signed in with a Google Account or Dialing in using a phone.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Internal Access to External Meetings", + "GroupNumber": "2", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/meet.md#2-Internal-Access-to-External-Meetings", + "Controls": [ + { + "Control ID": "GWS.MEET.2.1v0.3", + "Requirement": "Meeting access SHALL be disabled for meetings created by users who are not members of any Google Workspace tenant or organization.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Host Management Meeting Features", + "GroupNumber": "3", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/meet.md#3-Host-Management-Meeting-Features", + "Controls": [ + { + "Control ID": "GWS.MEET.3.1v0.3", + "Requirement": "Host Management meeting features SHALL be enabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "External Participants", + "GroupNumber": "4", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/meet.md#4-External-Participants", + "Controls": [ + { + "Control ID": "GWS.MEET.4.1v0.3", + "Requirement": "Warn for external participants SHALL be enabled.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + }, + { + "GroupName": "Incoming Calls", + "GroupNumber": "5", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/meet.md#5-Incoming-Calls", + "Controls": [ + { + "Control ID": "GWS.MEET.5.1v0.3", + "Requirement": "Incoming calls SHALL be restricted to contacts and other users in the organization.", + "Result": "Pass", + "Criticality": "Shall", + "Details": "Requirement met in all OUs and groups." + } + ] + } + ], + "rules": [ + { + "GroupName": "System-defined Rules", + "GroupNumber": "13", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/commoncontrols.md#13-System-defined-Rules", + "Controls": [ + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Domain data export initiated", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "A Super Administrator for your Google account has started exporting data from your domain." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "[Beta] Client-side encryption service unavailable", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "A problem has been detected with your client-side encryption service indicating an outage or misconfigured setting." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "User-reported phishing", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "A sender has sent messages to your domain that users have classified as phishings." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Suspicious message reported", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "A sender has sent messages to your domain that users have classified as spam." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Suspended user made active", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "A suspended user is made active." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "User suspended (by admin)", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "An admin has suspended the account." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Spike in user-reported spam", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "An unusually high volume of messages from a sender that users have marked as spam." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Google Voice configuration problem", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Auto attendants and ring groups with invalid references may hang up at unexpected times." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Directory sync cancelled due to safeguard threshold exceeded", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Directory sync has been automatically cancelled and disabled as the directory sync service detected a possibility to exceed deprovisioning safeguard threshold." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Account suspension warning", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Google Workspace accounts engaging in suspicious activity may have their account suspended. Google Workspace accounts must comply with the Google Workspace Terms of Service, Google Workspace for Education Terms of Service, Google Cloud Platform Terms of Service or Cloud Identity Terms of Service." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Leaked password", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Google detected compromised credentials requiring a reset of the user's password." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "User suspended (Google identity alert)", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Google detected suspicious activity and suspended the account." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "User suspended for spamming", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Google detected suspicious activity such as spamming and suspended the account." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "User suspended for spamming through relay", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Google detected suspicious activity such as spamming through a SMTP relay service and suspended the account." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Suspicious programmatic login", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Google detected suspicious login attempts from potential applications or computer programs." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "User suspended due to suspicious activity", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Google suspended a user's account due to a potential compromise detected." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Gmail potential employee spoofing", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Incoming messages where a sender's name is in your Google Workspace directory, but the mail is not from your company's domains or domain aliases." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Phishing in inboxes due to bad whitelist", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Messages classified as spam by Gmail filters delivered to user inboxes due to whitelisting settings in the Google Admin console that override the spam filters." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Malware message detected post-delivery", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Messages detected as malware post-delivery that are automatically reclassified." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Phishing message detected post-delivery", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Messages detected as phishing post-delivery that are automatically reclassified." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "TLS failure", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Messages requiring Transport Layer Security (TLS) can't be delivered." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Device compromised", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Provides details about devices in your domain that have entered a compromised state." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Google Operations", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Provides details about security and privacy issues that affect your Google Workspace services." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Suspicious device activity", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Provides details if device properties such as device ID, serial number, type of device, or device manufacturer are updated." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Government-backed attacks", + "Result": "No events found", + "Criticality": "Shall", + "Rule Description": "Warnings about potential government-backed attacks." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Rate limited recipient", + "Result": "No events found", + "Criticality": "Should", + "Rule Description": "A high rate of incoming email indicating a potential malicious attack or misconfigured setting." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "User deleted", + "Result": "No events found", + "Criticality": "Should", + "Rule Description": "A user has been deleted from the domain." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "App Maker Cloud SQL setup", + "Result": "No events found", + "Criticality": "Should", + "Rule Description": "A user has requested a Google Cloud SQL instance to be set up for use with App Maker." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Apps outage alert", + "Result": "No events found", + "Criticality": "Should", + "Rule Description": "Alerts about new, updated, or resolved outage on the Google Workspace Status Dashboard." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Smarthost failure", + "Result": "No events found", + "Criticality": "Should", + "Rule Description": "Alerts if a large number of messages can't be delivered to one of your smart host servers." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Calendar settings changed", + "Result": "No events found", + "Criticality": "Should", + "Rule Description": "An admin has changed Google Workspace Calendar settings." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Drive settings changed", + "Result": "No events found", + "Criticality": "Should", + "Rule Description": "An admin has changed Google Workspace Drive settings." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Email settings changed", + "Result": "No events found", + "Criticality": "Should", + "Rule Description": "An admin has changed Google Workspace Gmail settings." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Mobile settings changed", + "Result": "No events found", + "Criticality": "Should", + "Rule Description": "An admin has changed mobile management settings." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Exchange journaling failure", + "Result": "No events found", + "Criticality": "Should", + "Rule Description": "Failures with Exchange journaling that ensures email traffic generated by Microsoft\u00ae Exchange server users is properly archived in Google Vault." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "New user added", + "Result": "Pass", + "Criticality": "Should", + "Rule Description": "A new user has been added to the domain." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "User granted Admin privilege", + "Result": "Pass", + "Criticality": "Shall", + "Rule Description": "A user is granted an admin privilege." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "User's Admin privilege revoked", + "Result": "Pass", + "Criticality": "Shall", + "Rule Description": "A user is revoked of their admin privilege." + }, + { + "Control ID": "GWS.COMMONCONTROLS.13.1v0.3", + "Rule Name": "Suspicious login", + "Result": "Fail", + "Criticality": "Shall", + "Rule Description": "Google detected a sign-in attempt that doesn't match a user's normal behavior, such as a sign-in from an unusual location." + } + ] + } + ], + "sites": [ + { + "GroupName": "Sites Service Status", + "GroupNumber": "1", + "GroupReferenceURL": "https://github.com/cisagov/scubagoggles/blob/v0.3.0/baselines/sites.md#1-Sites-Service-Status", + "Controls": [ + { + "Control ID": "GWS.SITES.1.1v0.3", + "Requirement": "Sites Service SHOULD be disabled for all users.", + "Result": "Pass", + "Criticality": "Should", + "Details": "Requirement met in all OUs and groups." + } + ] + } + ] + }, + "Raw": { + "organizational_units": { + "kind": "admin#directory#orgUnits", + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Sj_HAvudKHEkCVM_Sn1krnddo1Y\"", + "organizationUnits": [ + { + "kind": "admin#directory#orgUnit", + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CdR1hTfWzqxA8DDaOUg11hbVivo\"", + "name": "Catherine Lara", + "description": "test OU for super admins", + "orgUnitPath": "/Catherine Lara", + "orgUnitId": "id:0a0a0a0a0a0a0a0", + "parentOrgUnitPath": "/", + "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" + }, + { + "kind": "admin#directory#orgUnit", + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rPn4yE7pK_muoYjSNhrvr6_yDqo\"", + "name": "Jorge Williams", + "description": "", + "orgUnitPath": "/Jorge Williams", + "orgUnitId": "id:0a0a0a0a0a0a0a0", + "parentOrgUnitPath": "/", + "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" + }, + { + "kind": "admin#directory#orgUnit", + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/73BuQlA1JPEBmzb0TAY7r5yFSvM\"", + "name": "Anthony Jackson", + "description": "Made for Rego testing", + "orgUnitPath": "/Anthony Jackson", + "orgUnitId": "id:0a0a0a0a0a0a0a0", + "parentOrgUnitPath": "/", + "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" + }, + { + "kind": "admin#directory#orgUnit", + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xZPiY5ANaUSTy1NiOmxx5l4pPVQ\"", + "name": "Luke Martin", + "description": "Luke Martin", + "orgUnitPath": "/Luke Martin", + "orgUnitId": "id:0a0a0a0a0a0a0a0", + "parentOrgUnitPath": "/", + "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" + }, + { + "kind": "admin#directory#orgUnit", + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jjnzho2daqNOhRQzkLQjaqEbIlQ\"", + "name": "Nicholas Rodriguez", + "description": "", + "orgUnitPath": "/Nicholas Rodriguez", + "orgUnitId": "id:0a0a0a0a0a0a0a0", + "parentOrgUnitPath": "/", + "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" + }, + { + "kind": "admin#directory#orgUnit", + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0iSPmMd8Umpd7-_APEgVeBB9tSA\"", + "name": "Alexandra Maxwell", + "description": "For AI auto-classification testing", + "orgUnitPath": "/Alexandra Maxwell", + "orgUnitId": "id:0a0a0a0a0a0a0a0", + "parentOrgUnitPath": "/", + "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" + }, + { + "kind": "admin#directory#orgUnit", + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tWNXvp6OIwsyhFqlp48uLmfcAy8\"", + "name": "Glenn Mccoy", + "description": "Users in this group have access to sites", + "orgUnitPath": "/Glenn Mccoy", + "orgUnitId": "id:0a0a0a0a0a0a0a0", + "parentOrgUnitPath": "/", + "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" + }, + { + "kind": "admin#directory#orgUnit", + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-xaSPPNVsEV_f4ZopOLvPlAMcAY\"", + "name": "Angelica Martinez", + "description": "Kenneth Hernandez", + "orgUnitPath": "/Angelica Martinez", + "orgUnitId": "id:0a0a0a0a0a0a0a0", + "parentOrgUnitPath": "/", + "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" + }, + { + "kind": "admin#directory#orgUnit", + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xYv0b7tChPSeZLwr06IoCgqCmJM\"", + "name": "Cameron Dunn", + "description": "", + "orgUnitPath": "/Cameron Dunn", + "orgUnitId": "id:0a0a0a0a0a0a0a0", + "parentOrgUnitPath": "/", + "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" + }, + { + "kind": "admin#directory#orgUnit", + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/X1U4mk2O0HZtNkP6IdLl1K7PVNk\"", + "name": "Anthony Jackson_Brian Parrish", + "description": "", + "orgUnitPath": "/Anthony Jackson_Brian Parrish", + "orgUnitId": "id:0a0a0a0a0a0a0a0", + "parentOrgUnitPath": "/", + "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" + }, + { + "kind": "admin#directory#orgUnit", + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/F464OiguDbtVqB5S3P2I45wEpiI\"", + "name": "Test Target Audience", + "description": "", + "orgUnitPath": "/Test Target Audience", + "orgUnitId": "id:0a0a0a0a0a0a0a0", + "parentOrgUnitPath": "/", + "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" + }, + { + "kind": "admin#directory#orgUnit", + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3eMmDNWrjQyXGjoeFyKNxexiNw0\"", + "name": "Sites OU", + "description": "", + "orgUnitPath": "/Sites OU", + "orgUnitId": "id:0a0a0a0a0a0a0a0", + "parentOrgUnitPath": "/", + "parentOrgUnitId": "id:0a0a0a0a0a0a0a0" + } + ] + }, + "organizational_unit_names": [ + "", + "Dawn Green", + "Olivia Anderson", + "Molly Burgess", + "Org Name", + "Sites OU", + "Amber Ruiz", + "Ryan Young", + "Test Target Audience", + "Rebecca Schultz", + "Kelly Allen_Tiffany English", + "Michele Owens", + "Kelly Allen", + "Isaiah Walsh" + ], + "calendar_logs": { + "items": [ + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-17T13:27:28.705Z", + "uniqueQualifier": "-8477115180212894288", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zCHnkwno4jJaD-6bPKqJlkwBcAs\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN_FOR_SECONDARY_CALENDAR" + }, + { + "name": "ORG_UNIT_NAME", + "value": "" + }, + { + "name": "OLD_VALUE", + "value": "SHOW_ONLY_FREE_BUSY_INFORMATION" + }, + { + "name": "NEW_VALUE", + "value": "READ_WRITE_ACCESS" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:44:10.329Z", + "uniqueQualifier": "-8486742869988451916", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xd_fwYYcK5wIhYh2CS5BteCi4Dc\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EWS_INTEROP" + }, + { + "name": "ORG_UNIT_NAME", + "value": "" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:42:01.426Z", + "uniqueQualifier": "-6408041277190046787", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ka1o1q1rVakUtANGB7lIcJGZJyU\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EWS_INTEROP" + }, + { + "name": "ORG_UNIT_NAME", + "value": "" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:41:05.585Z", + "uniqueQualifier": "-8366999120854461687", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/c88KyiFQ1N6tLXrtltcevpUmkXA\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EWS_INTEROP" + }, + { + "name": "ORG_UNIT_NAME", + "value": "" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:38:07.573Z", + "uniqueQualifier": "-7019067880239209779", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/px_Hc9f28KakY4WRWdH2ahGWNs0\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EXTERNAL_GUEST_PROMPT" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "GROUP_EMAIL", + "value": "christopherjenkins@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:37:39.208Z", + "uniqueQualifier": "-7935118052466259343", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/LCp1DOOhVQbtxN1rVkDK85Ci-nM\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EXTERNAL_GUEST_PROMPT" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "GROUP_EMAIL", + "value": "christopherjenkins@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:36:13.350Z", + "uniqueQualifier": "-7876506947637356115", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9HxQLyUDwbTi1H0wCgXtDnts1QE\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EXTERNAL_GUEST_PROMPT" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kevin Ortiz" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:35:45.528Z", + "uniqueQualifier": "-6332458829736664046", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dcx-N6jsDvP-5zTH21fByTOryQU\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EXTERNAL_GUEST_PROMPT" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kevin Ortiz" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:35:15.028Z", + "uniqueQualifier": "-6551676897309297499", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hCY4Gafs8QgIeqUZPTRwBYcCmCQ\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EXTERNAL_GUEST_PROMPT" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:34:40.132Z", + "uniqueQualifier": "-6647051825042666966", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ZxrwF1dFW0fPlsjP1ovR9bF9JzY\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EXTERNAL_GUEST_PROMPT" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:33:52.022Z", + "uniqueQualifier": "-5113128350909749994", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bFVN1s3MrNpDQi5jEPkp9C_4zak\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN_FOR_SECONDARY_CALENDAR" + }, + { + "name": "ORG_UNIT_NAME", + "value": "" + }, + { + "name": "OLD_VALUE", + "value": "MANAGE_ACCESS" + }, + { + "name": "NEW_VALUE", + "value": "SHOW_ONLY_FREE_BUSY_INFORMATION" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:33:15.607Z", + "uniqueQualifier": "-4965016007964467148", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OJ2Xs5vYD2zG_4UpIVOa7RRWma8\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN_FOR_SECONDARY_CALENDAR" + }, + { + "name": "ORG_UNIT_NAME", + "value": "" + }, + { + "name": "OLD_VALUE", + "value": "SHOW_ONLY_FREE_BUSY_INFORMATION" + }, + { + "name": "NEW_VALUE", + "value": "MANAGE_ACCESS" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:32:34.294Z", + "uniqueQualifier": "-4708609750457909254", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kj9RetqJKyxRlW79o_99L_DfnGQ\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "READ_ONLY_ACCESS" + }, + { + "name": "NEW_VALUE", + "value": "SHOW_ONLY_FREE_BUSY_INFORMATION" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:32:18.473Z", + "uniqueQualifier": "-7085844140542796383", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YPXfgY-S468WhnT1k1OheFL1OV8\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "MANAGE_ACCESS" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "GROUP_EMAIL", + "value": "christopherjenkins@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:31:49.411Z", + "uniqueQualifier": "-8801771209770878875", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zsMRH_gAv9_UoneBgcgccXMeG9A\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "MANAGE_ACCESS" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "GROUP_EMAIL", + "value": "christopherjenkins@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:30:54.382Z", + "uniqueQualifier": "-8099679689652983531", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JP3_l3iuUBs0BggliFmwk-ha6mE\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kevin Ortiz" + }, + { + "name": "OLD_VALUE", + "value": "READ_WRITE_ACCESS" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:30:20.533Z", + "uniqueQualifier": "-8158733140943555806", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/fRMPD-i79Fq8S4YJatqDEJVlk0A\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kevin Ortiz" + }, + { + "name": "OLD_VALUE", + "value": "MANAGE_ACCESS" + }, + { + "name": "NEW_VALUE", + "value": "READ_WRITE_ACCESS" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:29:25.508Z", + "uniqueQualifier": "-6950796392888715395", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QxVBSyiCvoriRZL1iAsaHKVPJD4\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "CALENDAR_SETTINGS", + "name": "CHANGE_CALENDAR_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHOW_ONLY_FREE_BUSY_INFORMATION" + }, + { + "name": "NEW_VALUE", + "value": "READ_ONLY_ACCESS" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:46:07.986Z", + "uniqueQualifier": "-5174706392570142599", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Sm3Z16iwvOGo36Y_pfzFK9eRdUo\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Calendar" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kevin Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "CalendarAppointmentSlotAdminSettingsProto payments_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:45:39.226Z", + "uniqueQualifier": "-5522405652697133681", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/SgYrmfwIy47tTbjx_cQ75Nw2JJ4\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Calendar" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "CalendarAppointmentSlotAdminSettingsProto payments_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:45:08.275Z", + "uniqueQualifier": "-7385793982146338594", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/44AcYXPlp13PG-9tMjm3uEKCmnI\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Calendar" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "CalendarAppointmentSlotAdminSettingsProto payments_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:55:08.063Z", + "uniqueQualifier": "-5890825954996077196", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ZqQ7H_KbwkWxQaDhDF3CbC8BY8w\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Calendar" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kevin Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "CalendarAppointmentSlotAdminSettingsProto payments_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-10T23:03:06.944Z", + "uniqueQualifier": "-6579869504202952668", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Zbjo6zX1d0AlsK646w60y0D8dtc\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Calendar" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kevin Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "CalendarAppointmentSlotAdminSettingsProto payments_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T17:46:40.675Z", + "uniqueQualifier": "-7018811880230337269", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8BiCJuVMBarS9Kpj9dJuGLgqyNA\"", + "actor": { + "callerType": "USER", + "email": "christopherjenkins@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "102.236.115.157", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Calendar" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kevin Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "CalendarAppointmentSlotAdminSettingsProto payments_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + } + ] + }, + "chat_logs": { + "items": [ + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:40:22.466Z", + "uniqueQualifier": "-7887561784838261571", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9VKGfj7DJcafbBPP_GSwytdpx7w\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting Allowlist access" + }, + { + "name": "OLD_VALUE", + "value": "ALLOW_ALL" + }, + { + "name": "NEW_VALUE", + "value": "ALLOW_SPECIFIED" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting allow_all_internal_apps" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:40:22.466Z", + "uniqueQualifier": "-7887561784838261571", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9VKGfj7DJcafbBPP_GSwytdpx7w\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting Allowlist access" + }, + { + "name": "OLD_VALUE", + "value": "ALLOW_ALL" + }, + { + "name": "NEW_VALUE", + "value": "ALLOW_SPECIFIED" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting allow_all_internal_apps" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:40:14.385Z", + "uniqueQualifier": "-6056168752789270714", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/iTBbAQhxPZsWj5LsfEqGFleRIKE\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting Allowlist access" + }, + { + "name": "OLD_VALUE", + "value": "ALLOW_SPECIFIED" + }, + { + "name": "NEW_VALUE", + "value": "ALLOW_ALL" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:39:14.005Z", + "uniqueQualifier": "-7147674165748918269", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nlTNz9E571y5mcCTVHilaRsuAQI\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting Allowlist access" + }, + { + "name": "OLD_VALUE", + "value": "ALLOW_ALL" + }, + { + "name": "NEW_VALUE", + "value": "ALLOW_SPECIFIED" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting allow_all_internal_apps" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:39:14.005Z", + "uniqueQualifier": "-7147674165748918269", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nlTNz9E571y5mcCTVHilaRsuAQI\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting Allowlist access" + }, + { + "name": "OLD_VALUE", + "value": "ALLOW_ALL" + }, + { + "name": "NEW_VALUE", + "value": "ALLOW_SPECIFIED" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting allow_all_internal_apps" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:37:05.652Z", + "uniqueQualifier": "-9205883031082977874", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hbcfwf6k22_k-3FtjvUC7V4nBIU\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting Allowlist access" + }, + { + "name": "OLD_VALUE", + "value": "ALLOW_SPECIFIED" + }, + { + "name": "NEW_VALUE", + "value": "ALLOW_ALL" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:27:47.475Z", + "uniqueQualifier": "-7014252578803603883", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1Zmoc3LHvpg9GhAvNk_9ST-3pf8\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DynamiteFileSharingSettingsProto external_file_sharing_setting" + }, + { + "name": "OLD_VALUE", + "value": "IMAGES_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "NO_FILES" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:26:03.558Z", + "uniqueQualifier": "-8950312908180674247", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_hCKnKg8Q3r8eQltZnf2GCnGN5U\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:26:03.558Z", + "uniqueQualifier": "-8950312908180674247", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_hCKnKg8Q3r8eQltZnf2GCnGN5U\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:26:03.558Z", + "uniqueQualifier": "-8950312908180674247", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_hCKnKg8Q3r8eQltZnf2GCnGN5U\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:25:35.940Z", + "uniqueQualifier": "-5717817924683121393", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/otW34L9No04sWaaJt282hmHA7fs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:25:35.940Z", + "uniqueQualifier": "-5717817924683121393", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/otW34L9No04sWaaJt282hmHA7fs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:25:35.940Z", + "uniqueQualifier": "-5717817924683121393", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/otW34L9No04sWaaJt282hmHA7fs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:24:46.421Z", + "uniqueQualifier": "-7876189068470984762", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JvnjzarJyT16jLtnnLsJwpes9xI\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: OTHER\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:23:49.482Z", + "uniqueQualifier": "-8533726947567458040", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ne5uUITWrirWbkzLstu5MyBO-a0\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:22:28.330Z", + "uniqueQualifier": "-7943145884182403662", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ry2eoi1L_GCVZVCgDn8QH9Zk_So\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:22:28.330Z", + "uniqueQualifier": "-7943145884182403662", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ry2eoi1L_GCVZVCgDn8QH9Zk_So\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:21:49.399Z", + "uniqueQualifier": "-9015781430855477844", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/qLznX7EZXrw4znlC8gqvEADbFQg\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:21:49.399Z", + "uniqueQualifier": "-9015781430855477844", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/qLznX7EZXrw4znlC8gqvEADbFQg\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:21:19.302Z", + "uniqueQualifier": "-8486376875349240445", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tuWVPtcVS2ZBavttkpTeGpacxGk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:20:25.040Z", + "uniqueQualifier": "-8636968227045980780", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5NMiXbH0m_5kIqszGP9Ez_MvTFI\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:17:20.912Z", + "uniqueQualifier": "-7673894559800395421", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YmcAl-0fyr20jCUSV-Vb8nQa8Ns\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto restrictChatToOrganization" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:17:16.890Z", + "uniqueQualifier": "-7550912556731955277", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OrJKsxVFvs2Z0F4Uvlhb8XwjwYY\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto restrictChatToOrganization" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:16:53.464Z", + "uniqueQualifier": "-8360623288448812884", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_HnPEs1aTqTHoKXfu-JeKlFRin8\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto externalChatRestriction" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS" + }, + { + "name": "NEW_VALUE", + "value": "NO_RESTRICTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:16:23.981Z", + "uniqueQualifier": "-6971315591005762236", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/LRE7nQdHjiiz8_9R6v-ya_-XB-g\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto restrictChatToOrganization" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:15:58.759Z", + "uniqueQualifier": "-7203150203936999926", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KQE8lpE1558T_OXZWAC_8i6xNRQ\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto externalChatRestriction" + }, + { + "name": "OLD_VALUE", + "value": "NO_RESTRICTION" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:15:32.025Z", + "uniqueQualifier": "-8191604283539947445", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UJKuwOpkIZWk2MBow8CKlOc2SnM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto externalChatRestriction" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS" + }, + { + "name": "NEW_VALUE", + "value": "NO_RESTRICTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:15:03.228Z", + "uniqueQualifier": "-7694512380275587787", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pbiL3fe0HxG3MWpkjF6LhI4x-zo\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto restrictChatToOrganization" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:12:44.627Z", + "uniqueQualifier": "-6647175090810509884", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6vXXkbu4jMf6imSpcmYc_j4pEoM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "RoomOtrSettingsProto otr_state" + }, + { + "name": "OLD_VALUE", + "value": "DEFAULT_OFF_THE_RECORD" + }, + { + "name": "NEW_VALUE", + "value": "DEFAULT_ON_THE_RECORD" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:12:15.974Z", + "uniqueQualifier": "-8080273420039872387", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yZc24eSucZnXeTglioSvVYzsxpE\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "RoomOtrSettingsProto otr_state" + }, + { + "name": "OLD_VALUE", + "value": "ALWAYS_OFF_THE_RECORD" + }, + { + "name": "NEW_VALUE", + "value": "DEFAULT_OFF_THE_RECORD" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:11:45.989Z", + "uniqueQualifier": "-9157814716279378327", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/eONg8SXPPLlDXjnnPYcD4Jaco0E\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "RoomOtrSettingsProto otr_state" + }, + { + "name": "OLD_VALUE", + "value": "ALWAYS_ON_THE_RECORD" + }, + { + "name": "NEW_VALUE", + "value": "ALWAYS_OFF_THE_RECORD" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:11:17.353Z", + "uniqueQualifier": "-8172147712442665897", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xOd9yPAIq_2eWMcttBz6lAqa0Xg\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "RoomOtrSettingsProto otr_state" + }, + { + "name": "OLD_VALUE", + "value": "DEFAULT_OFF_THE_RECORD" + }, + { + "name": "NEW_VALUE", + "value": "ALWAYS_ON_THE_RECORD" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:09:13.209Z", + "uniqueQualifier": "-7587608269144110522", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2l4f8-arRTwo97odfeoh9TYhkTM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DynamiteFileSharingSettingsProto external_file_sharing_setting" + }, + { + "name": "OLD_VALUE", + "value": "NO_FILES" + }, + { + "name": "NEW_VALUE", + "value": "IMAGES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:08:48.503Z", + "uniqueQualifier": "-6962493130770165557", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FYbWtLU2YcslMkEbWwl-2yqmhbY\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto allow_chat_archiving_setting_modification" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:06:38.856Z", + "uniqueQualifier": "-7399566814057475095", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YQ7b0ywNXMrnvRqjxfVHeTFudq0\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto chatsDefaultToOffTheRecord" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:06:33.988Z", + "uniqueQualifier": "-8020911819707963536", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NMoy6Si_ZuAgUyqY-Hcg8gxXMKA\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto allow_chat_archiving_setting_modification" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto chatsDefaultToOffTheRecord" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:06:33.988Z", + "uniqueQualifier": "-8020911819707963536", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NMoy6Si_ZuAgUyqY-Hcg8gxXMKA\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto allow_chat_archiving_setting_modification" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto chatsDefaultToOffTheRecord" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:06:06.990Z", + "uniqueQualifier": "-8042150540548263125", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2Ak926mxDdieR3pCSuGl688eDy0\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto chatsDefaultToOffTheRecord" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:05:44.194Z", + "uniqueQualifier": "-6617886611257823811", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/L5wXmHW5Vk7Gd-H5DYQI-ZgdljE\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto allow_chat_archiving_setting_modification" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:05:12.810Z", + "uniqueQualifier": "-5230807813889003249", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BdRXKTUdGiav0SR_EtM1IjRsLFQ\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto chatsDefaultToOffTheRecord" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-08T20:16:19.915Z", + "uniqueQualifier": "-7930101470938536214", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YaaeeEWo4R39hssag8R9g59KOUY\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Test Target Audience" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto externalChatRestriction" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS" + }, + { + "name": "NEW_VALUE", + "value": "NO_RESTRICTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T19:08:13.781Z", + "uniqueQualifier": "-5348890122661969238", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ckn34d8sJixaEawXrICSo0eFdBw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Chat app Settings - Chat apps enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T19:06:42.661Z", + "uniqueQualifier": "-5419176639400854018", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Byxh2WJn9YEO3SeXgwX_ospEh1Y\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Chat app Settings - Chat apps enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-27T14:39:18.058Z", + "uniqueQualifier": "-7949310213342848296", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OzvxstEtjCqqNzsZvzKaKaorbMQ\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "Chat app Settings - Chat apps enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T18:00:05.495Z", + "uniqueQualifier": "-5718476310452348531", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jak4ocUgxARCOyyqyxf4zFpApx8\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: CONFIDENTIAL_INFORMATION\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T17:58:59.059Z", + "uniqueQualifier": "-7709251650637614822", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7UkvbbLjhvr27I8GaXdB-9SjPyc\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: CONFIDENTIAL_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T17:58:43.519Z", + "uniqueQualifier": "-5675907858515971736", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FEuxK72ommgWu5mEDihq9k6KpYs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: SPAM\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T17:57:15.484Z", + "uniqueQualifier": "-5055238693028733494", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xpZm7cqIO93BBweOW8sGy_YY9G0\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: SPAM\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T17:55:52.803Z", + "uniqueQualifier": "-8734531393169642681", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ynArDZg5lFraGhypq8siO01zWVs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: CONFIDENTIAL_INFORMATION\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T17:54:15.520Z", + "uniqueQualifier": "-4820620952529858196", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tG3UUHi_I1PUQeP7EGng8KSRriw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: CONFIDENTIAL_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T17:54:15.520Z", + "uniqueQualifier": "-4820620952529858196", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tG3UUHi_I1PUQeP7EGng8KSRriw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: CONFIDENTIAL_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T17:52:18.319Z", + "uniqueQualifier": "-5549678074728637710", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QOXzs6KKXUkaa3bNC3DP1L4_xAs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T17:52:18.319Z", + "uniqueQualifier": "-5549678074728637710", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QOXzs6KKXUkaa3bNC3DP1L4_xAs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T17:52:18.319Z", + "uniqueQualifier": "-5549678074728637710", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QOXzs6KKXUkaa3bNC3DP1L4_xAs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T17:52:18.319Z", + "uniqueQualifier": "-5549678074728637710", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QOXzs6KKXUkaa3bNC3DP1L4_xAs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T17:50:46.165Z", + "uniqueQualifier": "-7650409460268248090", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/IfN-Bucu4Ysasp7-2MDHshFZwl8\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T17:50:22.157Z", + "uniqueQualifier": "-8217202257236044315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ni_Q3Gu2eRBB48z7qJUzqwo5UB4\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T17:50:22.157Z", + "uniqueQualifier": "-8217202257236044315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ni_Q3Gu2eRBB48z7qJUzqwo5UB4\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:54:24.847Z", + "uniqueQualifier": "-6308798392322336959", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/B8nX5vkrfLdSCG2ZlatAXOAOk2c\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:45:33.745Z", + "uniqueQualifier": "-5417962127174307015", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PvD9yZeBZFN7zMSob-BB0IcFbKg\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:59:47.456Z", + "uniqueQualifier": "-5777292877128450150", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dAOXhNItV0jxH_Urb9kLA9_TMx0\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:59:47.456Z", + "uniqueQualifier": "-5777292877128450150", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dAOXhNItV0jxH_Urb9kLA9_TMx0\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:13:30.169Z", + "uniqueQualifier": "-6977753558754250610", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/qKsX25dBFDIelv8oeQYEVClrbPE\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:09:14.542Z", + "uniqueQualifier": "-5614487196773234623", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hsL52O5MRB9QavURHMMa5dJstLw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:05:47.057Z", + "uniqueQualifier": "-6816441186651420891", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ZF6I-9zC-Ak-LebRSzldiy_0yBI\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:05:13.345Z", + "uniqueQualifier": "-8990779354522384884", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/M4nojpi2Z3sNHpygy5s8C0qNvZg\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:02:58.193Z", + "uniqueQualifier": "-8483384571925962353", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/SKaPtE6etGxa8SR_fOyvuDWUL8E\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:02:58.193Z", + "uniqueQualifier": "-8483384571925962353", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/SKaPtE6etGxa8SR_fOyvuDWUL8E\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:26:58.464Z", + "uniqueQualifier": "-9148009362511820150", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Gj_Hw3-5-ACOqHTaPYDl-ckLL9Q\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:26:58.464Z", + "uniqueQualifier": "-9148009362511820150", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Gj_Hw3-5-ACOqHTaPYDl-ckLL9Q\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:26:58.464Z", + "uniqueQualifier": "-9148009362511820150", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Gj_Hw3-5-ACOqHTaPYDl-ckLL9Q\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:25:01.490Z", + "uniqueQualifier": "-6393262787711306142", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:25:01.490Z", + "uniqueQualifier": "-6393262787711306142", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:25:01.490Z", + "uniqueQualifier": "-6393262787711306142", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:25:01.490Z", + "uniqueQualifier": "-6393262787711306142", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:25:01.490Z", + "uniqueQualifier": "-6393262787711306142", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:25:01.490Z", + "uniqueQualifier": "-6393262787711306142", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:25:01.490Z", + "uniqueQualifier": "-6393262787711306142", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:25:01.490Z", + "uniqueQualifier": "-6393262787711306142", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XAQbez6CwgZoPgzOO4Ne96XUXQs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:23:20.517Z", + "uniqueQualifier": "-5910220960607714226", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CSUk4jW9mLqiM_1m6xlXE2rBMSs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:23:20.517Z", + "uniqueQualifier": "-5910220960607714226", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CSUk4jW9mLqiM_1m6xlXE2rBMSs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:23:20.517Z", + "uniqueQualifier": "-5910220960607714226", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CSUk4jW9mLqiM_1m6xlXE2rBMSs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:23:20.517Z", + "uniqueQualifier": "-5910220960607714226", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CSUk4jW9mLqiM_1m6xlXE2rBMSs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:23:20.517Z", + "uniqueQualifier": "-5910220960607714226", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CSUk4jW9mLqiM_1m6xlXE2rBMSs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:10:05.260Z", + "uniqueQualifier": "-5952565029117867686", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0pflB2sJMCH4Yme1QaYNeqEETOY\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "DynamiteFileSharingSettingsProto external_file_sharing_setting" + }, + { + "name": "NEW_VALUE", + "value": "ALL_FILES" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "DynamiteFileSharingSettingsProto internal_file_sharing_setting" + }, + { + "name": "NEW_VALUE", + "value": "ALL_FILES" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:10:05.260Z", + "uniqueQualifier": "-5952565029117867686", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0pflB2sJMCH4Yme1QaYNeqEETOY\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "DynamiteFileSharingSettingsProto external_file_sharing_setting" + }, + { + "name": "NEW_VALUE", + "value": "ALL_FILES" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "DynamiteFileSharingSettingsProto internal_file_sharing_setting" + }, + { + "name": "NEW_VALUE", + "value": "ALL_FILES" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:07:42.628Z", + "uniqueQualifier": "-6499201999060038490", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TCuFe4WbRSSgQRSw0Zf_VYsc5oY\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto chatsDefaultToOffTheRecord" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto allow_chat_archiving_setting_modification" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:07:42.628Z", + "uniqueQualifier": "-6499201999060038490", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TCuFe4WbRSSgQRSw0Zf_VYsc5oY\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto chatsDefaultToOffTheRecord" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto allow_chat_archiving_setting_modification" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:07:09.063Z", + "uniqueQualifier": "-8969014943281676999", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vZM-oDNQBiT849jV_vo1tmigBu0\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto chatsDefaultToOffTheRecord" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto allow_chat_archiving_setting_modification" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:07:09.063Z", + "uniqueQualifier": "-8969014943281676999", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vZM-oDNQBiT849jV_vo1tmigBu0\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto chatsDefaultToOffTheRecord" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto allow_chat_archiving_setting_modification" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:59:10.110Z", + "uniqueQualifier": "-8386834296554780685", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cjXkGwuz9-3O-srBiVCk1N--UEk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:59:10.110Z", + "uniqueQualifier": "-8386834296554780685", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cjXkGwuz9-3O-srBiVCk1N--UEk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:59:10.110Z", + "uniqueQualifier": "-8386834296554780685", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cjXkGwuz9-3O-srBiVCk1N--UEk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:59:10.110Z", + "uniqueQualifier": "-8386834296554780685", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cjXkGwuz9-3O-srBiVCk1N--UEk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:59:10.110Z", + "uniqueQualifier": "-8386834296554780685", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cjXkGwuz9-3O-srBiVCk1N--UEk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-08T20:13:50.145Z", + "uniqueQualifier": "-7222664256084686393", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ht8ZToYET6cAJ80pD81AAByIgp8\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Test Target Audience" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto restrictChatToOrganization" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Test Target Audience" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto externalChatRestriction" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-08T20:13:50.145Z", + "uniqueQualifier": "-7222664256084686393", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ht8ZToYET6cAJ80pD81AAByIgp8\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Test Target Audience" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto restrictChatToOrganization" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Test Target Audience" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto externalChatRestriction" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:56:00.449Z", + "uniqueQualifier": "-7964243820370082571", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Utum7yF9fNcrb_uFahRit5TpA_c\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:56:00.449Z", + "uniqueQualifier": "-7964243820370082571", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Utum7yF9fNcrb_uFahRit5TpA_c\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:56:00.449Z", + "uniqueQualifier": "-7964243820370082571", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Utum7yF9fNcrb_uFahRit5TpA_c\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:56:00.449Z", + "uniqueQualifier": "-7964243820370082571", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Utum7yF9fNcrb_uFahRit5TpA_c\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:56:00.449Z", + "uniqueQualifier": "-7964243820370082571", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Utum7yF9fNcrb_uFahRit5TpA_c\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:43:52.998Z", + "uniqueQualifier": "-6584289455960691129", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:43:52.998Z", + "uniqueQualifier": "-6584289455960691129", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:43:52.998Z", + "uniqueQualifier": "-6584289455960691129", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:43:52.998Z", + "uniqueQualifier": "-6584289455960691129", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:43:52.998Z", + "uniqueQualifier": "-6584289455960691129", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:43:52.998Z", + "uniqueQualifier": "-6584289455960691129", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:43:52.998Z", + "uniqueQualifier": "-6584289455960691129", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:43:52.998Z", + "uniqueQualifier": "-6584289455960691129", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9iT8gpk0yWJhp3uPKt0Std1QeNY\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:10:36.385Z", + "uniqueQualifier": "-8922480876969605161", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:10:36.385Z", + "uniqueQualifier": "-8922480876969605161", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:10:36.385Z", + "uniqueQualifier": "-8922480876969605161", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:10:36.385Z", + "uniqueQualifier": "-8922480876969605161", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:10:36.385Z", + "uniqueQualifier": "-8922480876969605161", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:10:36.385Z", + "uniqueQualifier": "-8922480876969605161", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:10:36.385Z", + "uniqueQualifier": "-8922480876969605161", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:10:36.385Z", + "uniqueQualifier": "-8922480876969605161", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EGDzjNn-0V-I1t9amcRJXBT5cLk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:09:48.773Z", + "uniqueQualifier": "-5158239100147635314", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FashUXBqrq5qS3h7QHxVBj_61rg\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:09:48.773Z", + "uniqueQualifier": "-5158239100147635314", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FashUXBqrq5qS3h7QHxVBj_61rg\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:09:48.773Z", + "uniqueQualifier": "-5158239100147635314", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FashUXBqrq5qS3h7QHxVBj_61rg\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:09:48.773Z", + "uniqueQualifier": "-5158239100147635314", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FashUXBqrq5qS3h7QHxVBj_61rg\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:09:48.773Z", + "uniqueQualifier": "-5158239100147635314", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FashUXBqrq5qS3h7QHxVBj_61rg\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:33:33.154Z", + "uniqueQualifier": "-5480362920132431443", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ID7VtmUl_6_psKJ-VEYcFk5qv5U\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:33:33.154Z", + "uniqueQualifier": "-5480362920132431443", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ID7VtmUl_6_psKJ-VEYcFk5qv5U\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:33:33.154Z", + "uniqueQualifier": "-5480362920132431443", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ID7VtmUl_6_psKJ-VEYcFk5qv5U\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:33:33.154Z", + "uniqueQualifier": "-5480362920132431443", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ID7VtmUl_6_psKJ-VEYcFk5qv5U\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:33:33.154Z", + "uniqueQualifier": "-5480362920132431443", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ID7VtmUl_6_psKJ-VEYcFk5qv5U\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:19:28.478Z", + "uniqueQualifier": "-4803232389001906550", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:19:28.478Z", + "uniqueQualifier": "-4803232389001906550", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:19:28.478Z", + "uniqueQualifier": "-4803232389001906550", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:19:28.478Z", + "uniqueQualifier": "-4803232389001906550", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:19:28.478Z", + "uniqueQualifier": "-4803232389001906550", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:19:28.478Z", + "uniqueQualifier": "-4803232389001906550", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:19:28.478Z", + "uniqueQualifier": "-4803232389001906550", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:19:28.478Z", + "uniqueQualifier": "-4803232389001906550", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o2VFd4n5rGoDPhaLbKjJ62qR1D8\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:14:49.919Z", + "uniqueQualifier": "-8398318737351595450", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:14:49.919Z", + "uniqueQualifier": "-8398318737351595450", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:14:49.919Z", + "uniqueQualifier": "-8398318737351595450", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:14:49.919Z", + "uniqueQualifier": "-8398318737351595450", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:14:49.919Z", + "uniqueQualifier": "-8398318737351595450", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:14:49.919Z", + "uniqueQualifier": "-8398318737351595450", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:14:49.919Z", + "uniqueQualifier": "-8398318737351595450", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:14:49.919Z", + "uniqueQualifier": "-8398318737351595450", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YghR4Y9nKbxCaeJTcUImN8c87xs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:02:20.990Z", + "uniqueQualifier": "-7223963000211338265", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:02:20.990Z", + "uniqueQualifier": "-7223963000211338265", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:02:20.990Z", + "uniqueQualifier": "-7223963000211338265", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:02:20.990Z", + "uniqueQualifier": "-7223963000211338265", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:02:20.990Z", + "uniqueQualifier": "-7223963000211338265", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:02:20.990Z", + "uniqueQualifier": "-7223963000211338265", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:02:20.990Z", + "uniqueQualifier": "-7223963000211338265", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:02:20.990Z", + "uniqueQualifier": "-7223963000211338265", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yu3U_Avo3-wOYxCs4nkjF7LHBOA\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "NEW_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "NEW_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "NEW_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "NEW_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:27:25.829Z", + "uniqueQualifier": "-6257495847541990767", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/le4QDQG_HAmizJOus3mGIEDJZxA\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:27:25.829Z", + "uniqueQualifier": "-6257495847541990767", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/le4QDQG_HAmizJOus3mGIEDJZxA\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:27:25.829Z", + "uniqueQualifier": "-6257495847541990767", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/le4QDQG_HAmizJOus3mGIEDJZxA\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:26:30.463Z", + "uniqueQualifier": "-7103786263113331496", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:26:30.463Z", + "uniqueQualifier": "-7103786263113331496", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:26:30.463Z", + "uniqueQualifier": "-7103786263113331496", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:26:30.463Z", + "uniqueQualifier": "-7103786263113331496", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:26:30.463Z", + "uniqueQualifier": "-7103786263113331496", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:26:30.463Z", + "uniqueQualifier": "-7103786263113331496", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:26:30.463Z", + "uniqueQualifier": "-7103786263113331496", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:26:30.463Z", + "uniqueQualifier": "-7103786263113331496", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uxnh5YbkFYzBF4CPaxYGhpR-Lxs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:22:35.533Z", + "uniqueQualifier": "-7027185209266434146", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UhtYICjbx0OJqLLB0xF0n0D6-7M\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:22:35.533Z", + "uniqueQualifier": "-7027185209266434146", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UhtYICjbx0OJqLLB0xF0n0D6-7M\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:22:35.533Z", + "uniqueQualifier": "-7027185209266434146", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UhtYICjbx0OJqLLB0xF0n0D6-7M\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:22:35.533Z", + "uniqueQualifier": "-7027185209266434146", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UhtYICjbx0OJqLLB0xF0n0D6-7M\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:22:35.533Z", + "uniqueQualifier": "-7027185209266434146", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UhtYICjbx0OJqLLB0xF0n0D6-7M\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:18:07.226Z", + "uniqueQualifier": "-6919036534415654097", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TDb5nWM96Hi_8Ydn45kEYzW8wHE\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto restrictChatToOrganization" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto externalChatRestriction" + }, + { + "name": "OLD_VALUE", + "value": "NO_RESTRICTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:18:07.226Z", + "uniqueQualifier": "-6919036534415654097", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TDb5nWM96Hi_8Ydn45kEYzW8wHE\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto restrictChatToOrganization" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto externalChatRestriction" + }, + { + "name": "OLD_VALUE", + "value": "NO_RESTRICTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:10:34.076Z", + "uniqueQualifier": "-5299828028143135252", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mJy1GifF37i5lPrTiWcNpKwIwck\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "DynamiteFileSharingSettingsProto internal_file_sharing_setting" + }, + { + "name": "OLD_VALUE", + "value": "ALL_FILES" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "DynamiteFileSharingSettingsProto external_file_sharing_setting" + }, + { + "name": "OLD_VALUE", + "value": "ALL_FILES" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:10:34.076Z", + "uniqueQualifier": "-5299828028143135252", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mJy1GifF37i5lPrTiWcNpKwIwck\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "DynamiteFileSharingSettingsProto internal_file_sharing_setting" + }, + { + "name": "OLD_VALUE", + "value": "ALL_FILES" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "DynamiteFileSharingSettingsProto external_file_sharing_setting" + }, + { + "name": "OLD_VALUE", + "value": "ALL_FILES" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:08:12.470Z", + "uniqueQualifier": "-5500264527741950737", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AFbGouAR_F_qH6cCYdpQu3c7sIs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto allow_chat_archiving_setting_modification" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto chatsDefaultToOffTheRecord" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:08:12.470Z", + "uniqueQualifier": "-5500264527741950737", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AFbGouAR_F_qH6cCYdpQu3c7sIs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto allow_chat_archiving_setting_modification" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto chatsDefaultToOffTheRecord" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:07:13.942Z", + "uniqueQualifier": "-8472704111767076250", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S5Zcd6XROmwVk9D5zlT1y74pkk0\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto allow_chat_archiving_setting_modification" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto chatsDefaultToOffTheRecord" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:07:13.942Z", + "uniqueQualifier": "-8472704111767076250", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S5Zcd6XROmwVk9D5zlT1y74pkk0\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto allow_chat_archiving_setting_modification" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto chatsDefaultToOffTheRecord" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:07:04.392Z", + "uniqueQualifier": "-5205757201527246439", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-Rp07itT7kcnwOemQruN0adlRb4\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto allow_chat_archiving_setting_modification" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto chatsDefaultToOffTheRecord" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T00:07:04.392Z", + "uniqueQualifier": "-5205757201527246439", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-Rp07itT7kcnwOemQruN0adlRb4\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto allow_chat_archiving_setting_modification" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ChatArchivingProto chatsDefaultToOffTheRecord" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:58:49.939Z", + "uniqueQualifier": "-5840617284795834714", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BdZFqiiFGkYJp9rHjlviS_fHxgM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:58:49.939Z", + "uniqueQualifier": "-5840617284795834714", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BdZFqiiFGkYJp9rHjlviS_fHxgM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:58:49.939Z", + "uniqueQualifier": "-5840617284795834714", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BdZFqiiFGkYJp9rHjlviS_fHxgM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:58:49.939Z", + "uniqueQualifier": "-5840617284795834714", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BdZFqiiFGkYJp9rHjlviS_fHxgM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:58:49.939Z", + "uniqueQualifier": "-5840617284795834714", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BdZFqiiFGkYJp9rHjlviS_fHxgM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-08T20:20:19.927Z", + "uniqueQualifier": "-5862926127405347500", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O0BvUDH2RuHyHA3fnVIds0o-tdw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Test Target Audience" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto externalChatRestriction" + }, + { + "name": "OLD_VALUE", + "value": "NO_RESTRICTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Test Target Audience" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto restrictChatToOrganization" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-08T20:20:19.927Z", + "uniqueQualifier": "-5862926127405347500", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O0BvUDH2RuHyHA3fnVIds0o-tdw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Test Target Audience" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto externalChatRestriction" + }, + { + "name": "OLD_VALUE", + "value": "NO_RESTRICTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Test Target Audience" + }, + { + "name": "SETTING_NAME", + "value": "RestrictChatProto restrictChatToOrganization" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:56:45.203Z", + "uniqueQualifier": "-5467764951882550462", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:56:45.203Z", + "uniqueQualifier": "-5467764951882550462", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:56:45.203Z", + "uniqueQualifier": "-5467764951882550462", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:56:45.203Z", + "uniqueQualifier": "-5467764951882550462", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:56:45.203Z", + "uniqueQualifier": "-5467764951882550462", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:56:45.203Z", + "uniqueQualifier": "-5467764951882550462", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:56:45.203Z", + "uniqueQualifier": "-5467764951882550462", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:56:45.203Z", + "uniqueQualifier": "-5467764951882550462", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5uheFSmBcEuRv4MPO4V0bqB1gFQ\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: SENSITIVE_INFORMATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:54:52.612Z", + "uniqueQualifier": "-5520349484868383511", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/u70YCeyrn8Xpix-3sdE9tF_FHlw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:54:52.612Z", + "uniqueQualifier": "-5520349484868383511", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/u70YCeyrn8Xpix-3sdE9tF_FHlw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:54:52.612Z", + "uniqueQualifier": "-5520349484868383511", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/u70YCeyrn8Xpix-3sdE9tF_FHlw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:54:52.612Z", + "uniqueQualifier": "-5520349484868383511", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/u70YCeyrn8Xpix-3sdE9tF_FHlw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:54:52.612Z", + "uniqueQualifier": "-5520349484868383511", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/u70YCeyrn8Xpix-3sdE9tF_FHlw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:11:08.528Z", + "uniqueQualifier": "-9019581388806799592", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:11:08.528Z", + "uniqueQualifier": "-9019581388806799592", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:11:08.528Z", + "uniqueQualifier": "-9019581388806799592", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:11:08.528Z", + "uniqueQualifier": "-9019581388806799592", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:11:08.528Z", + "uniqueQualifier": "-9019581388806799592", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:11:08.528Z", + "uniqueQualifier": "-9019581388806799592", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:11:08.528Z", + "uniqueQualifier": "-9019581388806799592", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:11:08.528Z", + "uniqueQualifier": "-9019581388806799592", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gmLtKcCTXMWoa-piah-jtf6z_nw\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:06:37.868Z", + "uniqueQualifier": "-4683921222812677728", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OOQ83cLade92iDXgaSRtrv00ujk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:06:37.868Z", + "uniqueQualifier": "-4683921222812677728", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OOQ83cLade92iDXgaSRtrv00ujk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:06:37.868Z", + "uniqueQualifier": "-4683921222812677728", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OOQ83cLade92iDXgaSRtrv00ujk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:06:37.868Z", + "uniqueQualifier": "-4683921222812677728", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OOQ83cLade92iDXgaSRtrv00ujk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T17:06:37.868Z", + "uniqueQualifier": "-4683921222812677728", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OOQ83cLade92iDXgaSRtrv00ujk\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:21:00.296Z", + "uniqueQualifier": "-7666466332809812958", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:21:00.296Z", + "uniqueQualifier": "-7666466332809812958", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:21:00.296Z", + "uniqueQualifier": "-7666466332809812958", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:21:00.296Z", + "uniqueQualifier": "-7666466332809812958", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:21:00.296Z", + "uniqueQualifier": "-7666466332809812958", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:21:00.296Z", + "uniqueQualifier": "-7666466332809812958", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:21:00.296Z", + "uniqueQualifier": "-7666466332809812958", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:21:00.296Z", + "uniqueQualifier": "-7666466332809812958", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kZSu86JExLF9ovYgNrKeaO6uyJM\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:16:35.910Z", + "uniqueQualifier": "-7131484956334248171", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6H6ixdKZ_M2uMgLZuI81VE1wBxQ\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:16:35.910Z", + "uniqueQualifier": "-7131484956334248171", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6H6ixdKZ_M2uMgLZuI81VE1wBxQ\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:16:35.910Z", + "uniqueQualifier": "-7131484956334248171", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6H6ixdKZ_M2uMgLZuI81VE1wBxQ\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:15:22.447Z", + "uniqueQualifier": "-7755783295568346503", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1EWmZb78oRKqG3n9Jh80LC0Z4Cc\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:15:22.447Z", + "uniqueQualifier": "-7755783295568346503", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1EWmZb78oRKqG3n9Jh80LC0Z4Cc\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:15:22.447Z", + "uniqueQualifier": "-7755783295568346503", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1EWmZb78oRKqG3n9Jh80LC0Z4Cc\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:15:22.447Z", + "uniqueQualifier": "-7755783295568346503", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1EWmZb78oRKqG3n9Jh80LC0Z4Cc\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:15:22.447Z", + "uniqueQualifier": "-7755783295568346503", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1EWmZb78oRKqG3n9Jh80LC0Z4Cc\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:13:59.974Z", + "uniqueQualifier": "-8058246490214539879", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tDCXkxssJyLX65wIqdRrF60RUPs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:13:59.974Z", + "uniqueQualifier": "-8058246490214539879", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tDCXkxssJyLX65wIqdRrF60RUPs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:13:59.974Z", + "uniqueQualifier": "-8058246490214539879", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tDCXkxssJyLX65wIqdRrF60RUPs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:13:59.974Z", + "uniqueQualifier": "-8058246490214539879", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tDCXkxssJyLX65wIqdRrF60RUPs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:13:59.974Z", + "uniqueQualifier": "-8058246490214539879", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tDCXkxssJyLX65wIqdRrF60RUPs\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_NO_RESTRICTIONS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:07:35.821Z", + "uniqueQualifier": "-5725972958969849410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:07:35.821Z", + "uniqueQualifier": "-5725972958969849410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:07:35.821Z", + "uniqueQualifier": "-5725972958969849410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:07:35.821Z", + "uniqueQualifier": "-5725972958969849410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:07:35.821Z", + "uniqueQualifier": "-5725972958969849410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:07:35.821Z", + "uniqueQualifier": "-5725972958969849410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:07:35.821Z", + "uniqueQualifier": "-5725972958969849410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T16:07:35.821Z", + "uniqueQualifier": "-5725972958969849410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aaY2Uk31va-blS83MdGtwgYUR1I\"", + "actor": { + "callerType": "USER", + "email": "jennifergonzales@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "22.180.5.214", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_ENABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto dialog_title" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto room_restrictions" + }, + { + "name": "OLD_VALUE", + "value": "SPACE_RESTRICTIONS_DISCOVERABLE_SPACES_ONLY" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto one_on_one_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto group_chat_reporting" + }, + { + "name": "OLD_VALUE", + "value": "CONTENT_REPORTING_STATE_DISABLED" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto custom_report_dialog" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto unsafe_dialog_description_html" + }, + { + "name": "OLD_VALUE", + "value": "" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Chat" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Brown" + }, + { + "name": "SETTING_NAME", + "value": "ContentReportingProto report_types" + }, + { + "name": "OLD_VALUE", + "value": "[system_violation: HARASSMENT\n, system_violation: DISCRIMINATION\n, system_violation: EXPLICIT_CONTENT\n, system_violation: SPAM\n, system_violation: CONFIDENTIAL_INFORMATION\n, system_violation: SENSITIVE_INFORMATION\n, system_violation: OTHER\n]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + } + ] + }, + "classroom_logs": { + "items": [ + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T01:21:27.557Z", + "uniqueQualifier": "-4754824336770494108", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ErScGmh9dKA05n6aRJlrrZO6ydk\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "TeacherPermissionsSettingProto who_can_create_class" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "NEW_VALUE", + "value": "3" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T01:03:54.167Z", + "uniqueQualifier": "-8132883445005055597", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/636X0JZzlUs2ILg2sxHA7qFBuxo\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Michael Jordan" + }, + { + "name": "SETTING_NAME", + "value": "StudentUnenrollmentSettingsProto who_can_unenroll_students" + }, + { + "name": "OLD_VALUE", + "value": "ONLY_TEACHERS_CAN_UNENROLL_STUDENTS" + }, + { + "name": "NEW_VALUE", + "value": "STUDENTS_AND_TEACHERS_CAN_UNENROLL_STUDENTS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T01:03:47.693Z", + "uniqueQualifier": "-7346744883119862855", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RpYnpRF0EwtWj1T8NHREB6kWf1o\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "StudentUnenrollmentSettingsProto who_can_unenroll_students" + }, + { + "name": "OLD_VALUE", + "value": "STUDENTS_AND_TEACHERS_CAN_UNENROLL_STUDENTS" + }, + { + "name": "NEW_VALUE", + "value": "ONLY_TEACHERS_CAN_UNENROLL_STUDENTS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T01:01:07.529Z", + "uniqueQualifier": "-6746269577276220828", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bKkwZxSK78BamFZrmEQ2k1H2MJ8\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "StudentUnenrollmentSettingsProto who_can_unenroll_students" + }, + { + "name": "OLD_VALUE", + "value": "ONLY_TEACHERS_CAN_UNENROLL_STUDENTS" + }, + { + "name": "NEW_VALUE", + "value": "STUDENTS_AND_TEACHERS_CAN_UNENROLL_STUDENTS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T00:37:26.017Z", + "uniqueQualifier": "-7003481311291604186", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hNFqBjFzCaMVr1swJCjx1mjXRq4\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Michael Jordan" + }, + { + "name": "SETTING_NAME", + "value": "ApiDataAccessSettingProto api_access_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T00:28:29.749Z", + "uniqueQualifier": "-6095003484042520079", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9eVOkxIszwS9GHIuHQFz12KR6io\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Michael Jordan" + }, + { + "name": "SETTING_NAME", + "value": "RosterImportSettingsProto sis_integrator" + }, + { + "name": "OLD_VALUE", + "value": "SIS_INTEGRATOR_CLEVER" + }, + { + "name": "NEW_VALUE", + "value": "SIS_INTEGRATOR_NONE" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T00:26:31.848Z", + "uniqueQualifier": "-6801952890455915135", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8AaViLRfFyrbFzUCPZJ4NivXljc\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "RosterImportSettingsProto sis_integrator" + }, + { + "name": "OLD_VALUE", + "value": "SIS_INTEGRATOR_CLEVER" + }, + { + "name": "NEW_VALUE", + "value": "SIS_INTEGRATOR_NONE" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T00:21:21.839Z", + "uniqueQualifier": "-7867776273521670875", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EMRYHLdUObVlPy0PCc_nDSyKmZc\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ApiDataAccessSettingProto api_access_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T23:54:24.244Z", + "uniqueQualifier": "-5593763229572017104", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DK7qA76577whXHwDV5lLlr_BuWE\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ClassMembershipSettingProto who_can_join_classes" + }, + { + "name": "OLD_VALUE", + "value": "4" + }, + { + "name": "NEW_VALUE", + "value": "1" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T23:53:07.045Z", + "uniqueQualifier": "-4988667774708903978", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9eqjEf0tUEmu9Qrb8Smze8WN-Ms\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ClassMembershipSettingProto who_can_join_classes" + }, + { + "name": "OLD_VALUE", + "value": "1" + }, + { + "name": "NEW_VALUE", + "value": "4" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T23:52:14.346Z", + "uniqueQualifier": "-5337651634364869377", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/g-4GgcY9ILr3BvvY3ojeNOlAOnc\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "ClassMembershipSettingProto which_classes_can_users_join" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "NEW_VALUE", + "value": "1" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-24T20:45:11.160Z", + "uniqueQualifier": "-8740321458255297967", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/r2rHO0-WTgxdNDr1K7afApcmtY8\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "TeacherPermissionsSettingProto who_can_create_class" + }, + { + "name": "OLD_VALUE", + "value": "1" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-24T20:44:23.749Z", + "uniqueQualifier": "-6549303659438705918", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wpyXuNOqKvNWUL1y5_Ip2CWDpCk\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "TeacherPermissionsSettingProto who_can_create_class" + }, + { + "name": "OLD_VALUE", + "value": "3" + }, + { + "name": "NEW_VALUE", + "value": "1" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-24T20:21:01.277Z", + "uniqueQualifier": "-9144290003917047606", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EXcZQAotoLZ1VmdRZ2M3rgTRJ8k\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "TeacherPermissionsSettingProto who_can_create_class" + }, + { + "name": "OLD_VALUE", + "value": "1" + }, + { + "name": "NEW_VALUE", + "value": "3" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-21T15:57:21.728Z", + "uniqueQualifier": "-6573780976234353996", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/fA7fh6KtC01OP2bj39ecvLwxNEw\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "TeacherPermissionsSettingProto who_can_create_class" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "NEW_VALUE", + "value": "1" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-21T15:55:33.964Z", + "uniqueQualifier": "-5868309474727489792", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CHUqnekaZvU3HgiZrtAJdxCX-ZY\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "TeacherPermissionsSettingProto who_can_create_class" + }, + { + "name": "OLD_VALUE", + "value": "3" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-21T15:55:22.181Z", + "uniqueQualifier": "-5318537856018611701", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7MWXSLlWIBUWGDeVni7jxMrlTU4\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "TeacherPermissionsSettingProto who_can_create_class" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "NEW_VALUE", + "value": "3" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-21T15:52:30.853Z", + "uniqueQualifier": "-7924684886310239575", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oGl1QFCNopWoOc887IqnsP4wtc8\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "TeacherPermissionsSettingProto who_can_create_class" + }, + { + "name": "OLD_VALUE", + "value": "3" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T01:03:14.924Z", + "uniqueQualifier": "-5317824849222030400", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hE221ZMsPNJkkaWATWA2sa1ULNY\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Michael Jordan" + }, + { + "name": "SETTING_NAME", + "value": "StudentUnenrollmentSettingsProto who_can_unenroll_students" + }, + { + "name": "NEW_VALUE", + "value": "ONLY_TEACHERS_CAN_UNENROLL_STUDENTS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T00:57:28.724Z", + "uniqueQualifier": "-6053662939418788326", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XwL9pZsFiEDJRUDgL9magOq3D5M\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Michael Jordan" + }, + { + "name": "SETTING_NAME", + "value": "ApiDataAccessSettingProto api_access_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T00:36:57.885Z", + "uniqueQualifier": "-8096810360987552006", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XHs81PNukW8gHlSd9T42vCDMh2M\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Michael Jordan" + }, + { + "name": "SETTING_NAME", + "value": "ApiDataAccessSettingProto api_access_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T00:27:05.183Z", + "uniqueQualifier": "-8237825120185706717", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Np54x-bLTqLNzIc8Gntwf6Rkpg8\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Michael Jordan" + }, + { + "name": "SETTING_NAME", + "value": "RosterImportSettingsProto sis_integrator" + }, + { + "name": "NEW_VALUE", + "value": "SIS_INTEGRATOR_CLEVER" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T01:04:31.757Z", + "uniqueQualifier": "-5862874507866229147", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/c8hU9xY_mqh19o-rOZRXDyIj2AM\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Michael Jordan" + }, + { + "name": "SETTING_NAME", + "value": "StudentUnenrollmentSettingsProto who_can_unenroll_students" + }, + { + "name": "OLD_VALUE", + "value": "STUDENTS_AND_TEACHERS_CAN_UNENROLL_STUDENTS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T00:59:09.045Z", + "uniqueQualifier": "-8368169694877926431", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KdI8TZvYYvKsMHOBf02hprp2ExQ\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Michael Jordan" + }, + { + "name": "SETTING_NAME", + "value": "ApiDataAccessSettingProto api_access_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T00:53:02.092Z", + "uniqueQualifier": "-6948178495355530548", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/paHvPJxLf1xcNNqZvaEskymzSME\"", + "actor": { + "callerType": "USER", + "email": "sarah61@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "210.30.114.146", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Classroom" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Michael Jordan" + }, + { + "name": "SETTING_NAME", + "value": "ApiDataAccessSettingProto api_access_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + } + ] + }, + "commoncontrols_logs": { + "items": [ + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:47:53.966Z", + "uniqueQualifier": "-5491849587234264962", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/m2nQ3MfIMrcsSCJQ-qMDs88CFGc\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:47:53.966Z", + "uniqueQualifier": "-5491849587234264962", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/m2nQ3MfIMrcsSCJQ-qMDs88CFGc\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:47:53.966Z", + "uniqueQualifier": "-5491849587234264962", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/m2nQ3MfIMrcsSCJQ-qMDs88CFGc\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:47:49.058Z", + "uniqueQualifier": "-8556964682465003782", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8xqNx7U9Sgj0b4auMQa9zoaXg4s\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:47:49.058Z", + "uniqueQualifier": "-8556964682465003782", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8xqNx7U9Sgj0b4auMQa9zoaXg4s\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:47:49.058Z", + "uniqueQualifier": "-8556964682465003782", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8xqNx7U9Sgj0b4auMQa9zoaXg4s\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AdminAccountRecoverySettingsProto Enable admin account recovery" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:57.323Z", + "uniqueQualifier": "-9154078054218049192", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BtgM0fQZYCLO563oCevZCyTNeMk\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:57.323Z", + "uniqueQualifier": "-9154078054218049192", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BtgM0fQZYCLO563oCevZCyTNeMk\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:57.323Z", + "uniqueQualifier": "-9154078054218049192", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BtgM0fQZYCLO563oCevZCyTNeMk\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:53.706Z", + "uniqueQualifier": "-7715925066902880856", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5DaW0SAPHM_AQFPBmlIFiuPwTaM\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:53.706Z", + "uniqueQualifier": "-7715925066902880856", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5DaW0SAPHM_AQFPBmlIFiuPwTaM\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:53.706Z", + "uniqueQualifier": "-7715925066902880856", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5DaW0SAPHM_AQFPBmlIFiuPwTaM\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce password policy at next login" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:47.346Z", + "uniqueQualifier": "-5358178154939358285", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Fsp-50kB-nnMiV-jahk5FO6r6lk\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "11" + }, + { + "name": "NEW_VALUE", + "value": "12" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "11" + }, + { + "name": "NEW_VALUE", + "value": "12" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "11" + }, + { + "name": "NEW_VALUE", + "value": "12" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:47.346Z", + "uniqueQualifier": "-5358178154939358285", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Fsp-50kB-nnMiV-jahk5FO6r6lk\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "11" + }, + { + "name": "NEW_VALUE", + "value": "12" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "11" + }, + { + "name": "NEW_VALUE", + "value": "12" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "11" + }, + { + "name": "NEW_VALUE", + "value": "12" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:47.346Z", + "uniqueQualifier": "-5358178154939358285", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Fsp-50kB-nnMiV-jahk5FO6r6lk\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "11" + }, + { + "name": "NEW_VALUE", + "value": "12" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "11" + }, + { + "name": "NEW_VALUE", + "value": "12" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "11" + }, + { + "name": "NEW_VALUE", + "value": "12" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:42.894Z", + "uniqueQualifier": "-6572248101867242620", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/izMAq4myoolv3X6ivaVDmCk05jg\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "12" + }, + { + "name": "NEW_VALUE", + "value": "11" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "12" + }, + { + "name": "NEW_VALUE", + "value": "11" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "12" + }, + { + "name": "NEW_VALUE", + "value": "11" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:42.894Z", + "uniqueQualifier": "-6572248101867242620", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/izMAq4myoolv3X6ivaVDmCk05jg\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "12" + }, + { + "name": "NEW_VALUE", + "value": "11" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "12" + }, + { + "name": "NEW_VALUE", + "value": "11" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "12" + }, + { + "name": "NEW_VALUE", + "value": "11" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:42.894Z", + "uniqueQualifier": "-6572248101867242620", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/izMAq4myoolv3X6ivaVDmCk05jg\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "12" + }, + { + "name": "NEW_VALUE", + "value": "11" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "12" + }, + { + "name": "NEW_VALUE", + "value": "11" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Minimum password length" + }, + { + "name": "OLD_VALUE", + "value": "12" + }, + { + "name": "NEW_VALUE", + "value": "11" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:37.536Z", + "uniqueQualifier": "-8165213193495775752", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l7DYmK3gRoLm_omIJGMZCm4WAcM\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "365" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "365" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "365" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:37.536Z", + "uniqueQualifier": "-8165213193495775752", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l7DYmK3gRoLm_omIJGMZCm4WAcM\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "365" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "365" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "365" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:37.536Z", + "uniqueQualifier": "-8165213193495775752", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l7DYmK3gRoLm_omIJGMZCm4WAcM\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "365" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "365" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "365" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:32.307Z", + "uniqueQualifier": "-5177345264838070518", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/imzcmhc-iL2mC-hEcszAQN0pmq4\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "NEW_VALUE", + "value": "365" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "NEW_VALUE", + "value": "365" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "NEW_VALUE", + "value": "365" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:32.307Z", + "uniqueQualifier": "-5177345264838070518", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/imzcmhc-iL2mC-hEcszAQN0pmq4\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "NEW_VALUE", + "value": "365" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "NEW_VALUE", + "value": "365" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "NEW_VALUE", + "value": "365" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:32.307Z", + "uniqueQualifier": "-5177345264838070518", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/imzcmhc-iL2mC-hEcszAQN0pmq4\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "NEW_VALUE", + "value": "365" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "NEW_VALUE", + "value": "365" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Password reset frequency" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "NEW_VALUE", + "value": "365" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:26.577Z", + "uniqueQualifier": "-8513758960855696500", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hIgsN97USEvKx2V81yjK_0VPRq8\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enable password reuse" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enable password reuse" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enable password reuse" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:26.577Z", + "uniqueQualifier": "-8513758960855696500", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hIgsN97USEvKx2V81yjK_0VPRq8\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enable password reuse" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enable password reuse" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enable password reuse" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:26.577Z", + "uniqueQualifier": "-8513758960855696500", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hIgsN97USEvKx2V81yjK_0VPRq8\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enable password reuse" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enable password reuse" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enable password reuse" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:21.534Z", + "uniqueQualifier": "-5613457177495223013", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pTtseKfTcLH-fJKUNMjbIX6rxhA\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "off" + }, + { + "name": "NEW_VALUE", + "value": "on" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "off" + }, + { + "name": "NEW_VALUE", + "value": "on" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "off" + }, + { + "name": "NEW_VALUE", + "value": "on" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:21.534Z", + "uniqueQualifier": "-5613457177495223013", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pTtseKfTcLH-fJKUNMjbIX6rxhA\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "off" + }, + { + "name": "NEW_VALUE", + "value": "on" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "off" + }, + { + "name": "NEW_VALUE", + "value": "on" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "off" + }, + { + "name": "NEW_VALUE", + "value": "on" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:21.534Z", + "uniqueQualifier": "-5613457177495223013", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pTtseKfTcLH-fJKUNMjbIX6rxhA\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "off" + }, + { + "name": "NEW_VALUE", + "value": "on" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "off" + }, + { + "name": "NEW_VALUE", + "value": "on" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "off" + }, + { + "name": "NEW_VALUE", + "value": "on" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:15.284Z", + "uniqueQualifier": "-6440463830299547259", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RKrA19g3nzNlHrT1z44u_QUmkMY\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "on" + }, + { + "name": "NEW_VALUE", + "value": "off" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "on" + }, + { + "name": "NEW_VALUE", + "value": "off" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "on" + }, + { + "name": "NEW_VALUE", + "value": "off" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:15.284Z", + "uniqueQualifier": "-6440463830299547259", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RKrA19g3nzNlHrT1z44u_QUmkMY\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "on" + }, + { + "name": "NEW_VALUE", + "value": "off" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "on" + }, + { + "name": "NEW_VALUE", + "value": "off" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "on" + }, + { + "name": "NEW_VALUE", + "value": "off" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:46:15.284Z", + "uniqueQualifier": "-6440463830299547259", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RKrA19g3nzNlHrT1z44u_QUmkMY\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "on" + }, + { + "name": "NEW_VALUE", + "value": "off" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "on" + }, + { + "name": "NEW_VALUE", + "value": "off" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Password Management - Enforce strong password" + }, + { + "name": "OLD_VALUE", + "value": "on" + }, + { + "name": "NEW_VALUE", + "value": "off" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:45:00.079Z", + "uniqueQualifier": "-5621956644552598645", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBrSKL3J2iCGJuxd83vXGWYHVDE\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:45:00.079Z", + "uniqueQualifier": "-5621956644552598645", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBrSKL3J2iCGJuxd83vXGWYHVDE\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:45:00.079Z", + "uniqueQualifier": "-5621956644552598645", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBrSKL3J2iCGJuxd83vXGWYHVDE\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:45:00.079Z", + "uniqueQualifier": "-5621956644552598645", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBrSKL3J2iCGJuxd83vXGWYHVDE\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:45:00.079Z", + "uniqueQualifier": "-5621956644552598645", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBrSKL3J2iCGJuxd83vXGWYHVDE\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:45:00.079Z", + "uniqueQualifier": "-5621956644552598645", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBrSKL3J2iCGJuxd83vXGWYHVDE\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:44:54.222Z", + "uniqueQualifier": "-8226884436446217313", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yGinaRFeHk26x2iwo97hcK2FPyI\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "NEW_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "NEW_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "NEW_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:44:54.222Z", + "uniqueQualifier": "-8226884436446217313", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yGinaRFeHk26x2iwo97hcK2FPyI\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "NEW_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "NEW_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "NEW_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:44:54.222Z", + "uniqueQualifier": "-8226884436446217313", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yGinaRFeHk26x2iwo97hcK2FPyI\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "NEW_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "NEW_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto challenge_selection_behavior" + }, + { + "name": "OLD_VALUE", + "value": "PERFORM_CHALLENGE_SELECTION" + }, + { + "name": "NEW_VALUE", + "value": "BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T17:34:22.702Z", + "uniqueQualifier": "-7279467952416731009", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7b_RwMrDEqJNWvbWF6cqvh2AQco\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Multi Party Approval" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" + }, + { + "name": "OLD_VALUE", + "value": "enabled" + }, + { + "name": "NEW_VALUE", + "value": "disabled" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise_plus" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T17:33:56.626Z", + "uniqueQualifier": "-6527215884915295225", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mLpXKhjULL4UBMnY2L8c3H7opSI\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Multi Party Approval" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" + }, + { + "name": "OLD_VALUE", + "value": "disabled" + }, + { + "name": "NEW_VALUE", + "value": "enabled" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise_plus" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T17:31:24.679Z", + "uniqueQualifier": "-7878509542897140419", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/eZIMCNcfZitwKqyY7Ip6TwDofZE\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Session management settings - Session length in seconds" + }, + { + "name": "OLD_VALUE", + "value": "14400" + }, + { + "name": "NEW_VALUE", + "value": "43200" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T17:30:26.717Z", + "uniqueQualifier": "-5507031210394217215", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/u3e9WCNl-CUwo1VqkL400KwVauU\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Session management settings - Session length in seconds" + }, + { + "name": "OLD_VALUE", + "value": "1209600" + }, + { + "name": "NEW_VALUE", + "value": "14400" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T17:29:33.061Z", + "uniqueQualifier": "-6845932581957702223", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yrbpj0opEL2qQnwCMnGj64ItIGc\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Session management settings - Session length in seconds" + }, + { + "name": "OLD_VALUE", + "value": "43200" + }, + { + "name": "NEW_VALUE", + "value": "1209600" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:40:22.466Z", + "uniqueQualifier": "-7887561784838261571", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9VKGfj7DJcafbBPP_GSwytdpx7w\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting Allowlist access" + }, + { + "name": "OLD_VALUE", + "value": "ALLOW_ALL" + }, + { + "name": "NEW_VALUE", + "value": "ALLOW_SPECIFIED" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting allow_all_internal_apps" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:40:22.466Z", + "uniqueQualifier": "-7887561784838261571", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9VKGfj7DJcafbBPP_GSwytdpx7w\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting Allowlist access" + }, + { + "name": "OLD_VALUE", + "value": "ALLOW_ALL" + }, + { + "name": "NEW_VALUE", + "value": "ALLOW_SPECIFIED" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting allow_all_internal_apps" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:40:14.385Z", + "uniqueQualifier": "-6056168752789270714", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/iTBbAQhxPZsWj5LsfEqGFleRIKE\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting Allowlist access" + }, + { + "name": "OLD_VALUE", + "value": "ALLOW_SPECIFIED" + }, + { + "name": "NEW_VALUE", + "value": "ALLOW_ALL" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:39:14.005Z", + "uniqueQualifier": "-7147674165748918269", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nlTNz9E571y5mcCTVHilaRsuAQI\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting Allowlist access" + }, + { + "name": "OLD_VALUE", + "value": "ALLOW_ALL" + }, + { + "name": "NEW_VALUE", + "value": "ALLOW_SPECIFIED" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting allow_all_internal_apps" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:39:14.005Z", + "uniqueQualifier": "-7147674165748918269", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nlTNz9E571y5mcCTVHilaRsuAQI\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting Allowlist access" + }, + { + "name": "OLD_VALUE", + "value": "ALLOW_ALL" + }, + { + "name": "NEW_VALUE", + "value": "ALLOW_SPECIFIED" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting allow_all_internal_apps" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:37:05.652Z", + "uniqueQualifier": "-9205883031082977874", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hbcfwf6k22_k-3FtjvUC7V4nBIU\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Workspace Marketplace" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Apps Access Setting Allowlist access" + }, + { + "name": "OLD_VALUE", + "value": "ALLOW_SPECIFIED" + }, + { + "name": "NEW_VALUE", + "value": "ALLOW_ALL" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-20T15:18:11.682Z", + "uniqueQualifier": "-8607259591115547645", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zHJBJccIltriUHDTFh7MpZC99Kw\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Session management settings - Session length in seconds" + }, + { + "name": "OLD_VALUE", + "value": "2592000" + }, + { + "name": "NEW_VALUE", + "value": "43200" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T15:19:29.499Z", + "uniqueQualifier": "-4701419243342508728", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/fSgZOWLTiX8O9NO7l-3RE9FDOQc\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Multi Party Approval" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" + }, + { + "name": "OLD_VALUE", + "value": "enabled" + }, + { + "name": "NEW_VALUE", + "value": "disabled" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise_plus" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T15:19:22.995Z", + "uniqueQualifier": "-6428881474889308182", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oBO9jJS1j3idMdGlmOe8nObepdk\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Multi Party Approval" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" + }, + { + "name": "OLD_VALUE", + "value": "disabled" + }, + { + "name": "NEW_VALUE", + "value": "enabled" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise_plus" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-19T15:36:29.152Z", + "uniqueQualifier": "-6774740717308530731", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rDFr8Nb4gvwTWd0Wyan2Nho_wU4\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Blogger" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "UserTakeoutSettingsProto User Takeout " + }, + { + "name": "OLD_VALUE", + "value": "Enabled" + }, + { + "name": "NEW_VALUE", + "value": "Disabled" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T20:38:12.934Z", + "uniqueQualifier": "-5971069798732635140", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CfUlCTECYtLdH-ldN8bCc6auGBs\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Multi Party Approval" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" + }, + { + "name": "OLD_VALUE", + "value": "enabled" + }, + { + "name": "NEW_VALUE", + "value": "disabled" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise_plus" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T20:37:36.450Z", + "uniqueQualifier": "-8425150488407637065", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2SkHto5F4FZVi6PySgiXr7xeHM0\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Multi Party Approval" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" + }, + { + "name": "OLD_VALUE", + "value": "disabled" + }, + { + "name": "NEW_VALUE", + "value": "enabled" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise_plus" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T19:44:47.311Z", + "uniqueQualifier": "-6967671160596892741", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/MkdOi--WSeouB84uCUpWwhOq_As\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Multi Party Approval" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" + }, + { + "name": "OLD_VALUE", + "value": "enabled" + }, + { + "name": "NEW_VALUE", + "value": "disabled" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise_plus" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T19:44:35.720Z", + "uniqueQualifier": "-8251970057245659187", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/c45flI4gnX4ZU9Uxn91YRT9-LnI\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Multi Party Approval" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" + }, + { + "name": "OLD_VALUE", + "value": "disabled" + }, + { + "name": "NEW_VALUE", + "value": "enabled" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise_plus" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-01T16:02:36.845Z", + "uniqueQualifier": "-7547080330758418104", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ke7an-t4cB47XmBPsn8GEdgNM40\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Multi Party Approval" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" + }, + { + "name": "OLD_VALUE", + "value": "enabled" + }, + { + "name": "NEW_VALUE", + "value": "disabled" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise_plus" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-01T15:54:07.174Z", + "uniqueQualifier": "-9114851573922242899", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hSAFpQVBVfOV43Dnh_KvkDDsyBY\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Multi Party Approval" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" + }, + { + "name": "OLD_VALUE", + "value": "disabled" + }, + { + "name": "NEW_VALUE", + "value": "enabled" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise_plus" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-01T15:45:27.703Z", + "uniqueQualifier": "-8705676054708012046", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4kB64E_R07yvI5F-q7Uk3gnF8M4\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Multi Party Approval" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" + }, + { + "name": "OLD_VALUE", + "value": "enabled" + }, + { + "name": "NEW_VALUE", + "value": "disabled" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise_plus" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:44:54.222Z", + "uniqueQualifier": "-8226884436446217313", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ByXoEjn925I9i_arQ-wXehcUsbw\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:44:54.222Z", + "uniqueQualifier": "-8226884436446217313", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ByXoEjn925I9i_arQ-wXehcUsbw\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:44:54.222Z", + "uniqueQualifier": "-8226884436446217313", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ByXoEjn925I9i_arQ-wXehcUsbw\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "core" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SsoPolicyProto sso_profile_challenge_selection_behavior" + }, + { + "name": "NEW_VALUE", + "value": "SSO_PROFILES_BYPASS_ADDITIONAL_CHALLENGES" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T17:31:33.085Z", + "uniqueQualifier": "-5505509800741520987", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oYf5AsRjUFaNOz4u_yjOGS4t5qw\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Daniel Russell" + }, + { + "name": "SETTING_NAME", + "value": "Session management settings - Session length in seconds" + }, + { + "name": "NEW_VALUE", + "value": "72000" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-01T15:45:18.569Z", + "uniqueQualifier": "-6167109452468799694", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-2Bt48rKOzmVOhF1Bm5thuwp52Q\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Multi Party Approval" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Multi Party Approval (MPA) Control Multi Party Approval Control" + }, + { + "name": "NEW_VALUE", + "value": "enabled" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise_plus" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T17:32:43.206Z", + "uniqueQualifier": "-7531749608526346154", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/M34plkw2Q_g7KdCqZsXEXpu1rLA\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Security" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Daniel Russell" + }, + { + "name": "SETTING_NAME", + "value": "Session management settings - Session length in seconds" + }, + { + "name": "OLD_VALUE", + "value": "72000" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T17:28:15.342Z", + "uniqueQualifier": "4956690961299526870", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/quXUuieR4EsROC6qiNHryZxWjE8\"", + "actor": { + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "events": [ + { + "type": "SECURITY_SETTINGS", + "name": "TOGGLE_CAA_ENABLEMENT", + "parameters": [ + { + "name": "NEW_VALUE", + "value": "ENABLED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T17:27:21.709Z", + "uniqueQualifier": "5784320826109206794", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KTGiz8Z7-E25ywMtxgt5vH2PwX0\"", + "actor": { + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "events": [ + { + "type": "SECURITY_SETTINGS", + "name": "TOGGLE_CAA_ENABLEMENT", + "parameters": [ + { + "name": "NEW_VALUE", + "value": "DISABLED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T17:27:18.424Z", + "uniqueQualifier": "797569169082568616", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/k928OtmM5qpApG1ZxmPgWrAN2zU\"", + "actor": { + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "events": [ + { + "type": "SECURITY_SETTINGS", + "name": "TOGGLE_CAA_ENABLEMENT", + "parameters": [ + { + "name": "NEW_VALUE", + "value": "DISABLED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T21:21:06.841Z", + "uniqueQualifier": "-9098195182074921452", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-fQO1VttB1Obie8i8zS9CKBE21Y\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "GROUP_EMAIL", + "value": "Test Group" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T21:20:46.288Z", + "uniqueQualifier": "8025554506417096733", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zS3HSddvbnPer8u4kCOjHdrrzbg\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "GROUP_EMAIL", + "value": "Test Group" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T21:16:20.189Z", + "uniqueQualifier": "6356283915385824969", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/D1TR1mn2jV4m3nTNDvIwKEw-g_U\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T21:16:01.109Z", + "uniqueQualifier": "7204973669826879617", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/SzCRUx16q6JUq3WFPzNQnvjeRmM\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T21:09:14.177Z", + "uniqueQualifier": "8302313116147020961", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RNrPvwvGArfJNJh9_prabZiUiZ0\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Alicia Grimes" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T21:08:47.434Z", + "uniqueQualifier": "-8749900273598629428", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PoaNB1Mn23UiFStWmas0q4T5aik\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Alicia Grimes" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T21:08:23.813Z", + "uniqueQualifier": "-2006657176011927130", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2ZZie_YZHJjeztU_5SjNtcvQ150\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Alicia Grimes" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T15:15:04.510Z", + "uniqueQualifier": "-5444758841714443622", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zd0oHRz1H30sZY8gJ7Ifv1xekxg\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "Early Access Apps" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T15:14:56.923Z", + "uniqueQualifier": "-5957373208334712224", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gAP9lpj6QvRtP0_bDD_kh972Uuc\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "Early Access Apps" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T15:14:02.942Z", + "uniqueQualifier": "-5708636481598052506", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CKXjGSesbvWzCU5wOAYKityUEXQ\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "AI Studio" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T15:13:14.451Z", + "uniqueQualifier": "-5236552787674514970", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QpmFQfW7NRV6UQret9O8gZ_roMA\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "AI Studio" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T15:11:52.275Z", + "uniqueQualifier": "-170769798380779633", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9GiJqVQHVqWVuVJU-b6q8bZh_zQ\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T15:09:52.063Z", + "uniqueQualifier": "3839884327329736493", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/d_fbdFvJa_chJfoulpfORJiV0-4\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-29T16:58:53.890Z", + "uniqueQualifier": "7454046695208426259", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wES7_Ynv5c8CiZyw16LybVDvoUw\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-22T18:20:51.143Z", + "uniqueQualifier": "-7688066320309934110", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EM38FAFsPQjrzvstCc2wey7T0l0\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "Gemini" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T16:35:34.867Z", + "uniqueQualifier": "-7527263763506654985", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/J6Pbk-QpRmwtf3RNIo3EChrSprw\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T15:28:15.108Z", + "uniqueQualifier": "6601077961077712234", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2O8VGsfETfnfmBqZRaCMnPr89do\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-07T11:43:06.667Z", + "uniqueQualifier": "-7947017718017192057", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DCQPh23OixiPHvct0lsp7J6Ysdc\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "Early Access Apps" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T19:22:55.858Z", + "uniqueQualifier": "-1594877828342837660", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/69OSj6V2mD9_iXaVundnAgzOTF8\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Daniel Russell" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T19:21:04.795Z", + "uniqueQualifier": "2753106744149837378", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DVZ60mbnjb0-SaeLEkWknblA_uw\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Daniel Russell" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T19:20:59.156Z", + "uniqueQualifier": "6178707512128116339", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/irVhaBwGC1mNiciRkZXYQqWEXjE\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Daniel Russell" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T19:19:13.642Z", + "uniqueQualifier": "2808073231402698204", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Gv6XaiMq_nD6suJkxzSwTJBndQ0\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T19:19:08.164Z", + "uniqueQualifier": "8736007291127896364", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rkw5mtTUj5MbLbQWOmU45x-BnMw\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T19:08:30.787Z", + "uniqueQualifier": "533218495484865116", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NYKdZWqDJyEWI93fdecspxR5CoA\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T18:59:47.601Z", + "uniqueQualifier": "-2453065809836051332", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tTdKdRnzKNEW_bBoIK9vtnuCscc\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T13:02:25.716Z", + "uniqueQualifier": "-6733023187686062485", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1WFFW5dUtAH3Rt4tRlgLzCGaJfs\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "GROUP_EMAIL", + "value": "Test Group" + }, + { + "name": "SERVICE_NAME", + "value": "Google Meet" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-17T13:24:57.067Z", + "uniqueQualifier": "162223212287505661", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mxrwtdruurEUt_byTOSSap4u8EQ\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-17T13:17:15.082Z", + "uniqueQualifier": "1964753045072657864", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HTA6cJ12b2oz5I5yyyz1QeBn3is\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-12T15:24:57.620Z", + "uniqueQualifier": "-689788582864289", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/94Ja39XIYZ62lAFAugruZ-VlHcw\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-12T15:19:16.583Z", + "uniqueQualifier": "3590866658306550858", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hO5E-6ac0TKrbBRUJeRbK9qU80s\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Alicia Grimes" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-03T12:43:40.126Z", + "uniqueQualifier": "1462511194025694775", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KZHuaRruLn5lkB5lKfbr5bruz38\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-03T12:42:57.125Z", + "uniqueQualifier": "2444645180561800039", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jjCS2080C-2siWcbEf6_0xEP56Q\"", + "actor": { + "callerType": "USER", + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:58:45.327Z", + "uniqueQualifier": "-8862591884249620940", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0KR0tPMjV1NZS5DlepWx_Kw2Zo8\"", + "actor": { + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "SECURITY_SETTINGS", + "name": "CHANGE_ALLOWED_TWO_STEP_VERIFICATION_METHODS", + "parameters": [ + { + "name": "ALLOWED_TWO_STEP_VERIFICATION_METHOD", + "value": "NO_TELEPHONY" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:45:53.677Z", + "uniqueQualifier": "-7449040998724714735", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dZCBmBJTFPdpic8X6gGD7q59DkI\"", + "actor": { + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "SECURITY_SETTINGS", + "name": "CHANGE_ALLOWED_TWO_STEP_VERIFICATION_METHODS", + "parameters": [ + { + "name": "ALLOWED_TWO_STEP_VERIFICATION_METHOD", + "value": "ANY" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:45:44.631Z", + "uniqueQualifier": "288460892597073627", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kzc6wEQc0xQk4gunhyLsnxXskCg\"", + "actor": { + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "SECURITY_SETTINGS", + "name": "CHANGE_ALLOWED_TWO_STEP_VERIFICATION_METHODS", + "parameters": [ + { + "name": "ALLOWED_TWO_STEP_VERIFICATION_METHOD", + "value": "NO_TELEPHONY" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-20T17:31:15.867Z", + "uniqueQualifier": "-4815774139489459152", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YchKbrEhuwOtDJcRjXs8UOZxTEo\"", + "actor": { + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "events": [ + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "APPS_SCRIPT_RUNTIME" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CHAT" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "GMAIL" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CLOUD_SEARCH" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "GROUPS" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CLASSROOM" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CLOUD_PLATFORM" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "APPS_SCRIPT" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CLOUD_BILLING" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CLOUD_MACHINE_LEARNING" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "VAULT" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CONTACTS" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "TASKS" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "GSUITE_ADMIN" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "SIGN_IN" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "ALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CALENDAR" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-20T17:34:56.786Z", + "uniqueQualifier": "2298505124163386465", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uLt1j_HJwonnnWCFICDyqc6oQng\"", + "actor": { + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "events": [ + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "APPS_SCRIPT" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CLOUD_BILLING" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CALENDAR" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "DRIVE" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "GSUITE_ADMIN" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "GMAIL" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CHAT" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "TASKS" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CLASSROOM" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "MEET" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CLOUD_PLATFORM" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "SIGN_IN" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "GROUPS" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CLOUD_SEARCH" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CONTACTS" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "VAULT" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "CLOUD_MACHINE_LEARNING" + } + ] + }, + { + "type": "SECURITY_SETTINGS", + "name": "DISALLOW_SERVICE_FOR_OAUTH2_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OAUTH2_SERVICE_NAME", + "value": "APPS_SCRIPT_RUNTIME" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:50:19.977Z", + "uniqueQualifier": "1630518378512947900", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1JX4FPsje1Rn6pFU2rjrU5hkiCY\"", + "actor": { + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "SECURITY_SETTINGS", + "name": "SIGN_IN_ONLY_THIRD_PARTY_API_ACCESS", + "parameters": [ + { + "name": "ORG_UNIT_NAME", + "value": "Daniel Russell" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:58:45.327Z", + "uniqueQualifier": "-8862591884249620940", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/B7wO4ANgpB_wEQjFVseuxbVWGnE\"", + "actor": { + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "SECURITY_SETTINGS", + "name": "CHANGE_TWO_STEP_VERIFICATION_ENROLLMENT_PERIOD_DURATION", + "parameters": [ + { + "name": "OLD_VALUE", + "value": "1 week" + }, + { + "name": "NEW_VALUE", + "value": "6 months" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-14T17:30:16.083Z", + "uniqueQualifier": "8892660873020770181", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hsJZ1-TGguVplVMgXirdzzKAwW0\"", + "actor": { + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "SECURITY_SETTINGS", + "name": "CHANGE_TWO_STEP_VERIFICATION_ENROLLMENT_PERIOD_DURATION", + "parameters": [ + { + "name": "OLD_VALUE", + "value": "None" + }, + { + "name": "NEW_VALUE", + "value": "1 week" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T21:00:18.348Z", + "uniqueQualifier": "-4565818199950087329", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oy-TAcRIgzndYHkaRfEKzUFQEBg\"", + "actor": { + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "SECURITY_SETTINGS", + "name": "CHANGE_TWO_STEP_VERIFICATION_FREQUENCY", + "parameters": [ + { + "name": "OLD_VALUE", + "value": "DISABLE_USERS_TO_TRUST_DEVICE" + }, + { + "name": "NEW_VALUE", + "value": "ENABLE_USERS_TO_TRUST_DEVICE" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "GROUP_EMAIL", + "value": "blackbrianna@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T21:00:12.784Z", + "uniqueQualifier": "-2799430038973637115", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0j6989kggFwQo2Y8eCI7PdUQt6Y\"", + "actor": { + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "SECURITY_SETTINGS", + "name": "CHANGE_TWO_STEP_VERIFICATION_FREQUENCY", + "parameters": [ + { + "name": "OLD_VALUE", + "value": "ENABLE_USERS_TO_TRUST_DEVICE" + }, + { + "name": "NEW_VALUE", + "value": "DISABLE_USERS_TO_TRUST_DEVICE" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "GROUP_EMAIL", + "value": "blackbrianna@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:45:44.631Z", + "uniqueQualifier": "288460892597073627", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pebGlNkgPdb7JIPqN0nZWpIokHM\"", + "actor": { + "email": "blackbrianna@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "56.58.225.25", + "events": [ + { + "type": "SECURITY_SETTINGS", + "name": "CHANGE_TWO_STEP_VERIFICATION_FREQUENCY", + "parameters": [ + { + "name": "OLD_VALUE", + "value": "ENABLE_USERS_TO_TRUST_DEVICE" + }, + { + "name": "NEW_VALUE", + "value": "DISABLE_USERS_TO_TRUST_DEVICE" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + } + ] + } + ] + } + ] + }, + "drive_logs": { + "items": [ + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:38:12.665Z", + "uniqueQualifier": "-5569613127991111442", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yk07l_kuavLBU7HbgX1wymos7As\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T19:10:37.808Z", + "uniqueQualifier": "-6758059041533525303", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9prwrsjXz0HwfxBeGqBo4Bo-UHc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T19:09:08.428Z", + "uniqueQualifier": "-8755822168297683805", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0U4qokKDGlMy2djmlebsNtlX3K8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T19:08:39.304Z", + "uniqueQualifier": "-5981392004795610726", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HHTWaCjk1eFC-nSmaBdP0gJcaV4\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T19:06:21.852Z", + "uniqueQualifier": "-7528104034368120774", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ANkpXRG6eTyz96ThhIRcjM2TDpw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T19:02:56.377Z", + "uniqueQualifier": "-5803188339931956713", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/qM0TYYMjbx7HHOiIx0SLril_jMY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T19:02:56.377Z", + "uniqueQualifier": "-5803188339931956713", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/qM0TYYMjbx7HHOiIx0SLril_jMY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T19:01:47.405Z", + "uniqueQualifier": "-7372451492300259829", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4g3mV3-0BgaMglFMgJGHSgQ2KYQ\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T19:01:47.405Z", + "uniqueQualifier": "-7372451492300259829", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4g3mV3-0BgaMglFMgJGHSgQ2KYQ\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T19:01:05.164Z", + "uniqueQualifier": "-6529127761578298697", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vLh8Xkdfj8aMatwhHUhFS29Ast8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T19:01:05.164Z", + "uniqueQualifier": "-6529127761578298697", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vLh8Xkdfj8aMatwhHUhFS29Ast8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:38:40.277Z", + "uniqueQualifier": "-6734309118287006481", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S8z58WKTnZumhAtZCqTNwZ7IwPI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:38:40.277Z", + "uniqueQualifier": "-6734309118287006481", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S8z58WKTnZumhAtZCqTNwZ7IwPI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:38:40.277Z", + "uniqueQualifier": "-6734309118287006481", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S8z58WKTnZumhAtZCqTNwZ7IwPI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:38:40.277Z", + "uniqueQualifier": "-6734309118287006481", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S8z58WKTnZumhAtZCqTNwZ7IwPI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:32:21.512Z", + "uniqueQualifier": "-5494505815372532044", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CLYC6UHyueHbQ-Qc__RjF7wXj1c\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:32:21.512Z", + "uniqueQualifier": "-5494505815372532044", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CLYC6UHyueHbQ-Qc__RjF7wXj1c\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:30:46.871Z", + "uniqueQualifier": "-5691191924056522617", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KEneUxp1MOLuRA5AUI13sE00-Y4\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:29:54.430Z", + "uniqueQualifier": "-4885388494769820137", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/WBeu1yvMheV1xglncPn2OxXlI8k\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-30T16:30:03.224Z", + "uniqueQualifier": "-6225018950953488785", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HcQWJuCr_hOUjAeeUDypVrzoT0A\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-30T16:27:53.794Z", + "uniqueQualifier": "-5430297109078136963", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BuXA1O9pUrqrMZ1YESf0uAaE-xM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-30T16:13:31.857Z", + "uniqueQualifier": "-6186303699170811072", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wM_GRR0fBYc6kHYHAv45MEKOCZE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T20:01:55.445Z", + "uniqueQualifier": "-9134699157413860116", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oA7KhoHahK2n7OKQgbe-Vmywz3I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T20:01:55.445Z", + "uniqueQualifier": "-9134699157413860116", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oA7KhoHahK2n7OKQgbe-Vmywz3I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T20:01:23.598Z", + "uniqueQualifier": "-6453329759918061396", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XpnZPYeZmaML3fdeIZHJjJsOadw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T20:01:23.598Z", + "uniqueQualifier": "-6453329759918061396", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XpnZPYeZmaML3fdeIZHJjJsOadw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T20:00:55.443Z", + "uniqueQualifier": "-8326487363715068696", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ec3K0QM8bkJ0-JPqEiEGdIKkZL8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T20:00:55.443Z", + "uniqueQualifier": "-8326487363715068696", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ec3K0QM8bkJ0-JPqEiEGdIKkZL8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:58:31.729Z", + "uniqueQualifier": "-5196851778320814059", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9LRQVNbpBo5sLBiAEG7BFIkNzqU\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:58:08.440Z", + "uniqueQualifier": "-8326562803321432515", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3nvuoWiHa7NbhrsT1QaZGLoD49E\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:57:59.109Z", + "uniqueQualifier": "-8679785815323904557", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5sx-rfzV_x6GDW-CZ1gHdEKAvgg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:57:59.109Z", + "uniqueQualifier": "-8679785815323904557", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5sx-rfzV_x6GDW-CZ1gHdEKAvgg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:57:35.390Z", + "uniqueQualifier": "-8726858889320538590", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0JoydjrjkLq76wWJryk2BRfZY8w\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:57:15.682Z", + "uniqueQualifier": "-9145805961328483579", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VZ9yIxWJdruRu8svQQbH6C5nRdI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:56:04.269Z", + "uniqueQualifier": "-7107712390887690156", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OOWCKkJAcIl-OXzZ1R0bfr-KnFA\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:56:04.269Z", + "uniqueQualifier": "-7107712390887690156", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OOWCKkJAcIl-OXzZ1R0bfr-KnFA\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:55:41.266Z", + "uniqueQualifier": "-6656396625333784394", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rtfDcnSsvcCSfmnwLk9Uy4PMR7k\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:55:19.200Z", + "uniqueQualifier": "-5326921170765997758", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/X2zcbiQxDj9eFErHw-Q_KU-RpZA\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:54:18.003Z", + "uniqueQualifier": "-5679489818711062864", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Cl6iiG_k7jRX81bxQQTb9AHLUKI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:53:47.137Z", + "uniqueQualifier": "-5403658130323572786", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0g8LugynGMoyATtsZAHjoqVoqTI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:53:26.003Z", + "uniqueQualifier": "-8959992541733734030", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dXuf5Mh2-2RvFN3U16QYAA0wNQs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:53:26.003Z", + "uniqueQualifier": "-8959992541733734030", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dXuf5Mh2-2RvFN3U16QYAA0wNQs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:52:56.659Z", + "uniqueQualifier": "-6951596531681174322", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yNsg_3vyF-Eu88sWW8ABshGPaEE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:47:00.136Z", + "uniqueQualifier": "-4717553201036379833", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/IoXc_4VFd0P0BzqLqhBzHfFQQgM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:45:47.941Z", + "uniqueQualifier": "-8502405197156787753", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GYmZ18LZDAALYIUE72bqm4quZKk\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:45:07.128Z", + "uniqueQualifier": "-5861564536069775716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AHER5QwCAQtGbAuro0LKILupsuk\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:44:21.968Z", + "uniqueQualifier": "-8912390425079681575", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VC4CTr79qAR3SuLVNWdPegRXr1g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-23T19:43:57.475Z", + "uniqueQualifier": "-7364996423626572868", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/IBWzHU9YC3w-dGJY3ml4uPjNpp0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T19:12:19.321Z", + "uniqueQualifier": "-4998972159258949478", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4OhL4bbBLlw6ul5wah9CoD6aYO0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T19:11:53.578Z", + "uniqueQualifier": "-8126025845543083768", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KvKOkiOjmTZsLoA99zuY5limTk4\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T19:05:26.350Z", + "uniqueQualifier": "-6767846494866817203", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wE1tQagsgsUr5AjQtPymEAwtfCY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T19:00:27.342Z", + "uniqueQualifier": "-6730178810369085249", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CKn1o-4ZTsFbUzxmfbnHcz6LcOc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T19:00:01.078Z", + "uniqueQualifier": "-5240174143983148338", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pgnasidKTeg__uHS3kSOufcze1g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T18:58:58.026Z", + "uniqueQualifier": "-7074314406262478515", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/m15eeIs7X4oFoTOLpobBIyKCCTs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T18:57:21.303Z", + "uniqueQualifier": "-7554536391614843324", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-6-lHb8xFHc2uzOCv2nHjn2mXII\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T18:48:11.080Z", + "uniqueQualifier": "-8071914226820076005", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ipUPAXwxSz6t8-wederGnh60NEk\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T18:48:03.414Z", + "uniqueQualifier": "-7988960708387797700", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4qrourndo4SLA_xv9Bh7i7XMgGg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T18:48:03.414Z", + "uniqueQualifier": "-7988960708387797700", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4qrourndo4SLA_xv9Bh7i7XMgGg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T18:43:29.582Z", + "uniqueQualifier": "-8352132975062667604", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tp50vgEu5kpfdN20B83zk5ToVc8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T18:42:54.032Z", + "uniqueQualifier": "-8247863007111965108", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/K9OiYUpgNrzYeohkUpqvWNBpdBs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T18:42:22.806Z", + "uniqueQualifier": "-6026236608927380466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jVpwz-0fDNA5P9TxYmuPvcG_694\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:40:52.551Z", + "uniqueQualifier": "-7117539780352382374", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7-TKiP7GsvW2i0oFdEcUg35LvsA\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:31:02.686Z", + "uniqueQualifier": "-4791844544329951549", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/iMH_tB-05bVsl1TYdi_eSMxYu0o\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:30:55.529Z", + "uniqueQualifier": "-9051509004331515822", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/i9iOXxhn6Rv9AHmalS2ljZ-Gs0A\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:23:40.131Z", + "uniqueQualifier": "-8365957919479801761", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ICTqgaYb6AwCXoXoPugkUUQJxmQ\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:23:34.000Z", + "uniqueQualifier": "-8814392527670997869", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Z79-ryBDKVkHBn88rKH9VOdIOno\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:22:40.015Z", + "uniqueQualifier": "-8459877995155770596", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9Qpwnt1QjM_pnAnRNZsOoIwoREc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:22:11.800Z", + "uniqueQualifier": "-8204039899997021240", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EebPv7dHHhjvAC9GMiksQEA3J2g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:21:24.919Z", + "uniqueQualifier": "-5078314506290659482", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/qyG200eBZ-Wgldcom81QKxnJpYM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:18:56.112Z", + "uniqueQualifier": "-9155722522549445993", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EWkZOLA1JVVJFnjf5iUjI_djSNk\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:10:52.853Z", + "uniqueQualifier": "-6235728671043758466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ezmEujnk9ZNQZsiMxcwfe-_STzk\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:10:46.658Z", + "uniqueQualifier": "-8905326178653500149", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2AbE4LwUwcV_ECbr0WTGHFX9_qk\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:09:46.911Z", + "uniqueQualifier": "-6708064944569813759", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/fEGwdH-QcJyp_9Qij6Sgz_NzNKM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:08:21.931Z", + "uniqueQualifier": "-4747488971726149404", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5PBDGjmJxmK34_LzbBmGBs3hBuc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:02:25.752Z", + "uniqueQualifier": "-4684204801873804587", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FN0FyuAJkjhd4Z0CHNV1P3atdRc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:01:50.456Z", + "uniqueQualifier": "-8435808754725603711", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VZuqZnI9samiaJP1V_Cqp46V4Fg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:00:42.150Z", + "uniqueQualifier": "-5056938647001635462", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Aa-iisAYoBe5QiQCLyU3hpmm4s0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:00:14.598Z", + "uniqueQualifier": "-8749884811971227313", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zBqm9h5tOANGg8kaEDeN0gtz518\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:59:30.080Z", + "uniqueQualifier": "-7756381434811792338", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mqNl1B6hRXtUJ8dKMhrccKkkreY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:56:38.188Z", + "uniqueQualifier": "-6023759064908813488", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/sJg_WksREChbrcT1Eiw1vAqyjuc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:54:49.060Z", + "uniqueQualifier": "-4804016798243901945", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JQFBTnJEmn6dZIlNA1R6dzHj4AU\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:52:38.138Z", + "uniqueQualifier": "-4764068213201030510", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KkZz9BCjqVQb4r4HtoFR3vg9MU0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:45:09.961Z", + "uniqueQualifier": "-7543802203887670457", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RWeJmD1Cg-jMMxDWXniQEmxCkqQ\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:44:41.587Z", + "uniqueQualifier": "-6525998659130341921", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HJ7yCNXA-xwg-2bVa7JXnisRyYQ\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:44:21.200Z", + "uniqueQualifier": "-7483476845200835575", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0_zb-a5UE7PRdbvuT6i30NWJj-g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:43:23.151Z", + "uniqueQualifier": "-7266487134781027180", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ri5jA4TPh1vnahjJd3MsgVX_7X0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:43:16.575Z", + "uniqueQualifier": "-6984660197905590688", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YODVXy1utHmAOiYQT_50dKjvBow\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:43:09.942Z", + "uniqueQualifier": "-8301029587016761168", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3lIc8V5JHIXiuh8rX_xdbzMSLhA\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:28:00.780Z", + "uniqueQualifier": "-5504087882441373682", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BwhQOIIDA5SWwfiZOjJ5QPHloU8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:27:10.633Z", + "uniqueQualifier": "-8892450140149394529", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mN3R9k360BzgRfRVu52Hl1GCyvo\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:27:10.633Z", + "uniqueQualifier": "-8892450140149394529", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mN3R9k360BzgRfRVu52Hl1GCyvo\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:26:26.599Z", + "uniqueQualifier": "-8079764369220131555", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0BjVV-6iHdnnGv1DynY39QVOXhg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:16:22.858Z", + "uniqueQualifier": "-5935676084988433480", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l7CgT2uJytXycqjQWQVMsCRV0oc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:15:37.200Z", + "uniqueQualifier": "-5911285786208974711", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zXZ-CELfD-ds1IEiGa1lVZ9L2Hw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T21:39:50.239Z", + "uniqueQualifier": "-5759689120411696213", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mXVsOBJB6lNGvFWNaQhqNNYs4C8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T21:39:50.239Z", + "uniqueQualifier": "-5759689120411696213", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mXVsOBJB6lNGvFWNaQhqNNYs4C8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T21:38:04.443Z", + "uniqueQualifier": "-5178734363784026559", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bbp38Bh5Pxl5NFGuF4wcDjChzhw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T21:38:04.443Z", + "uniqueQualifier": "-5178734363784026559", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bbp38Bh5Pxl5NFGuF4wcDjChzhw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T21:36:04.352Z", + "uniqueQualifier": "-8776910573280519828", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HR4VoF6fvWdobuKyvlRbit2m778\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T21:36:04.352Z", + "uniqueQualifier": "-8776910573280519828", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HR4VoF6fvWdobuKyvlRbit2m778\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T21:28:13.472Z", + "uniqueQualifier": "-5535100988903818971", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/c0kQXBXh0QmHysYzXTtjma-hoyo\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T21:28:13.472Z", + "uniqueQualifier": "-5535100988903818971", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/c0kQXBXh0QmHysYzXTtjma-hoyo\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T21:23:25.567Z", + "uniqueQualifier": "-5727240369047691672", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DFqlS76zHRqbJ1_lTsmMReWLqYs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T21:23:25.567Z", + "uniqueQualifier": "-5727240369047691672", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DFqlS76zHRqbJ1_lTsmMReWLqYs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T20:46:13.506Z", + "uniqueQualifier": "-7662675618627325231", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hJDiwF4AA4ybR4eUHOj8Ae4hszw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T20:46:13.506Z", + "uniqueQualifier": "-7662675618627325231", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hJDiwF4AA4ybR4eUHOj8Ae4hszw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T20:45:37.595Z", + "uniqueQualifier": "-6885387667700797003", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KT_DPXf0sGj3tqu4eQ0g6ZNqfU0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T20:45:37.595Z", + "uniqueQualifier": "-6885387667700797003", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KT_DPXf0sGj3tqu4eQ0g6ZNqfU0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T20:44:29.215Z", + "uniqueQualifier": "-6561757034096579114", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/921Z4QKmL2IsQmdzbRQ8rtiKz54\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T20:44:29.215Z", + "uniqueQualifier": "-6561757034096579114", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/921Z4QKmL2IsQmdzbRQ8rtiKz54\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T20:44:29.215Z", + "uniqueQualifier": "-6561757034096579114", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/921Z4QKmL2IsQmdzbRQ8rtiKz54\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T20:44:29.215Z", + "uniqueQualifier": "-6561757034096579114", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/921Z4QKmL2IsQmdzbRQ8rtiKz54\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings less_secure_link_option" + }, + { + "name": "OLD_VALUE", + "value": "REMOVE_LESS_SECURE_LINKS" + }, + { + "name": "NEW_VALUE", + "value": "REQUIRE_LESS_SECURE_LINKS" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T20:43:11.527Z", + "uniqueQualifier": "-5278963296338657499", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3HpW-i74oSm0mglMn8YB6aU2KuU\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T20:43:11.527Z", + "uniqueQualifier": "-5278963296338657499", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3HpW-i74oSm0mglMn8YB6aU2KuU\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Link Security Update Settings allow_less_secure_link_user_restore" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T19:46:48.845Z", + "uniqueQualifier": "-7840068786409668411", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/X1YqgcO7_5bfjrRwQuXxTOxUTW4\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T19:41:02.303Z", + "uniqueQualifier": "-5867520479533792529", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/R-pwGFcJvg77Kw7dqjFuvq1Y1Ko\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T19:41:02.303Z", + "uniqueQualifier": "-5867520479533792529", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/R-pwGFcJvg77Kw7dqjFuvq1Y1Ko\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T19:38:30.001Z", + "uniqueQualifier": "-6726709835500733171", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HRsjtXY9cucastyHwLPCUwfaQR8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:39:23.414Z", + "uniqueQualifier": "-7543828473165211434", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:39:23.414Z", + "uniqueQualifier": "-7543828473165211434", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:39:23.414Z", + "uniqueQualifier": "-7543828473165211434", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:39:23.414Z", + "uniqueQualifier": "-7543828473165211434", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:39:23.414Z", + "uniqueQualifier": "-7543828473165211434", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:39:23.414Z", + "uniqueQualifier": "-7543828473165211434", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:39:23.414Z", + "uniqueQualifier": "-7543828473165211434", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:39:23.414Z", + "uniqueQualifier": "-7543828473165211434", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HEI5lxaV6rCXEn5x-onJyp_Zj4I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T19:11:24.975Z", + "uniqueQualifier": "-5148461338551327485", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TDy6wfAv6z0vJHw7RCqwdvvD5BE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T19:11:24.975Z", + "uniqueQualifier": "-5148461338551327485", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TDy6wfAv6z0vJHw7RCqwdvvD5BE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T19:11:24.975Z", + "uniqueQualifier": "-5148461338551327485", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TDy6wfAv6z0vJHw7RCqwdvvD5BE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T19:11:24.975Z", + "uniqueQualifier": "-5148461338551327485", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TDy6wfAv6z0vJHw7RCqwdvvD5BE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:38:30.847Z", + "uniqueQualifier": "-6333910015986764900", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:38:30.847Z", + "uniqueQualifier": "-6333910015986764900", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:38:30.847Z", + "uniqueQualifier": "-6333910015986764900", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:38:30.847Z", + "uniqueQualifier": "-6333910015986764900", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:38:30.847Z", + "uniqueQualifier": "-6333910015986764900", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:38:30.847Z", + "uniqueQualifier": "-6333910015986764900", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:38:30.847Z", + "uniqueQualifier": "-6333910015986764900", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:38:30.847Z", + "uniqueQualifier": "-6333910015986764900", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kl8rlLQUUKG-v83qCvbn_Z5qLOU\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:30:37.984Z", + "uniqueQualifier": "-4958151055873361268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:30:37.984Z", + "uniqueQualifier": "-4958151055873361268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:30:37.984Z", + "uniqueQualifier": "-4958151055873361268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:30:37.984Z", + "uniqueQualifier": "-4958151055873361268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:30:37.984Z", + "uniqueQualifier": "-4958151055873361268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:30:37.984Z", + "uniqueQualifier": "-4958151055873361268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:30:37.984Z", + "uniqueQualifier": "-4958151055873361268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:30:37.984Z", + "uniqueQualifier": "-4958151055873361268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TxZ4uFuHOQameishJwx1mlxvcb0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:30:27.593Z", + "uniqueQualifier": "-6695876437962672817", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:30:27.593Z", + "uniqueQualifier": "-6695876437962672817", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:30:27.593Z", + "uniqueQualifier": "-6695876437962672817", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:30:27.593Z", + "uniqueQualifier": "-6695876437962672817", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:30:27.593Z", + "uniqueQualifier": "-6695876437962672817", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:30:27.593Z", + "uniqueQualifier": "-6695876437962672817", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:30:27.593Z", + "uniqueQualifier": "-6695876437962672817", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:30:27.593Z", + "uniqueQualifier": "-6695876437962672817", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GWKloGsQ-rZfwUUhO3JQSGQByRs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:23:08.962Z", + "uniqueQualifier": "-7854597488817395026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:23:08.962Z", + "uniqueQualifier": "-7854597488817395026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:23:08.962Z", + "uniqueQualifier": "-7854597488817395026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:23:08.962Z", + "uniqueQualifier": "-7854597488817395026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:23:08.962Z", + "uniqueQualifier": "-7854597488817395026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:23:08.962Z", + "uniqueQualifier": "-7854597488817395026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:23:08.962Z", + "uniqueQualifier": "-7854597488817395026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:23:08.962Z", + "uniqueQualifier": "-7854597488817395026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l_TjwBTCzoq3SljHD0qaqA0V3Zw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:10:14.372Z", + "uniqueQualifier": "-6905246942054429469", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:10:14.372Z", + "uniqueQualifier": "-6905246942054429469", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:10:14.372Z", + "uniqueQualifier": "-6905246942054429469", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:10:14.372Z", + "uniqueQualifier": "-6905246942054429469", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:10:14.372Z", + "uniqueQualifier": "-6905246942054429469", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:10:14.372Z", + "uniqueQualifier": "-6905246942054429469", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:10:14.372Z", + "uniqueQualifier": "-6905246942054429469", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:10:14.372Z", + "uniqueQualifier": "-6905246942054429469", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mPaYL4cKmsI5nUJ4jSgWNu8xsnc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:05:07.096Z", + "uniqueQualifier": "-5268349470360858805", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:05:07.096Z", + "uniqueQualifier": "-5268349470360858805", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:05:07.096Z", + "uniqueQualifier": "-5268349470360858805", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:05:07.096Z", + "uniqueQualifier": "-5268349470360858805", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:05:07.096Z", + "uniqueQualifier": "-5268349470360858805", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:05:07.096Z", + "uniqueQualifier": "-5268349470360858805", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:05:07.096Z", + "uniqueQualifier": "-5268349470360858805", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:05:07.096Z", + "uniqueQualifier": "-5268349470360858805", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e6OlUKS20o5EBh2ruHmZQ0_Ntv8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:00:54.168Z", + "uniqueQualifier": "-8164944329627578456", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:00:54.168Z", + "uniqueQualifier": "-8164944329627578456", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:00:54.168Z", + "uniqueQualifier": "-8164944329627578456", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:00:54.168Z", + "uniqueQualifier": "-8164944329627578456", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:00:54.168Z", + "uniqueQualifier": "-8164944329627578456", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:00:54.168Z", + "uniqueQualifier": "-8164944329627578456", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:00:54.168Z", + "uniqueQualifier": "-8164944329627578456", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:00:54.168Z", + "uniqueQualifier": "-8164944329627578456", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/srGiSry7aRu3vWdsct1CS2my9YM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:51:28.060Z", + "uniqueQualifier": "-8600538663807890321", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:51:28.060Z", + "uniqueQualifier": "-8600538663807890321", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:51:28.060Z", + "uniqueQualifier": "-8600538663807890321", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:51:28.060Z", + "uniqueQualifier": "-8600538663807890321", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:51:28.060Z", + "uniqueQualifier": "-8600538663807890321", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:51:28.060Z", + "uniqueQualifier": "-8600538663807890321", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:51:28.060Z", + "uniqueQualifier": "-8600538663807890321", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:51:28.060Z", + "uniqueQualifier": "-8600538663807890321", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OthlDCu1GwHWuJxE1ioWykqvAe0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "NEW_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "NEW_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:16:33.088Z", + "uniqueQualifier": "-8756543548400331835", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vUyQqhWW_qyShwrq9Ts8cdoMQ-I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:16:33.088Z", + "uniqueQualifier": "-8756543548400331835", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vUyQqhWW_qyShwrq9Ts8cdoMQ-I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:16:33.088Z", + "uniqueQualifier": "-8756543548400331835", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vUyQqhWW_qyShwrq9Ts8cdoMQ-I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:16:33.088Z", + "uniqueQualifier": "-8756543548400331835", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vUyQqhWW_qyShwrq9Ts8cdoMQ-I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:12:09.138Z", + "uniqueQualifier": "-8674495978124856876", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gpmraVzsuaMCBKTS3-hXtKnPi40\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:12:09.138Z", + "uniqueQualifier": "-8674495978124856876", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gpmraVzsuaMCBKTS3-hXtKnPi40\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:12:09.138Z", + "uniqueQualifier": "-8674495978124856876", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gpmraVzsuaMCBKTS3-hXtKnPi40\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:12:09.138Z", + "uniqueQualifier": "-8674495978124856876", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gpmraVzsuaMCBKTS3-hXtKnPi40\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-14T20:22:49.449Z", + "uniqueQualifier": "-4992673842433524886", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xE26F_IXhHxSXxe4yYKjFTwILDY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-14T20:22:49.449Z", + "uniqueQualifier": "-4992673842433524886", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xE26F_IXhHxSXxe4yYKjFTwILDY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-14T20:22:49.449Z", + "uniqueQualifier": "-4992673842433524886", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xE26F_IXhHxSXxe4yYKjFTwILDY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-14T20:22:49.449Z", + "uniqueQualifier": "-4992673842433524886", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xE26F_IXhHxSXxe4yYKjFTwILDY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T19:45:50.707Z", + "uniqueQualifier": "-5905259503042522115", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cKAjNea8KeVk3wOdQMOJuihFRHM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T19:45:50.707Z", + "uniqueQualifier": "-5905259503042522115", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cKAjNea8KeVk3wOdQMOJuihFRHM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T19:45:50.707Z", + "uniqueQualifier": "-5905259503042522115", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cKAjNea8KeVk3wOdQMOJuihFRHM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T19:45:50.707Z", + "uniqueQualifier": "-5905259503042522115", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cKAjNea8KeVk3wOdQMOJuihFRHM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:41:34.872Z", + "uniqueQualifier": "-5302348737094414354", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:41:34.872Z", + "uniqueQualifier": "-5302348737094414354", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:41:34.872Z", + "uniqueQualifier": "-5302348737094414354", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:41:34.872Z", + "uniqueQualifier": "-5302348737094414354", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:41:34.872Z", + "uniqueQualifier": "-5302348737094414354", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:41:34.872Z", + "uniqueQualifier": "-5302348737094414354", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:41:34.872Z", + "uniqueQualifier": "-5302348737094414354", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:41:34.872Z", + "uniqueQualifier": "-5302348737094414354", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TOu_K_kRkODkuts4SN4IEnnRD6w\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:39:21.719Z", + "uniqueQualifier": "-5464767165220701432", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:39:21.719Z", + "uniqueQualifier": "-5464767165220701432", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:39:21.719Z", + "uniqueQualifier": "-5464767165220701432", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:39:21.719Z", + "uniqueQualifier": "-5464767165220701432", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:39:21.719Z", + "uniqueQualifier": "-5464767165220701432", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:39:21.719Z", + "uniqueQualifier": "-5464767165220701432", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:39:21.719Z", + "uniqueQualifier": "-5464767165220701432", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:39:21.719Z", + "uniqueQualifier": "-5464767165220701432", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/GReeEEsf_t6zgvxOXCL2kEFE1WI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:31:16.119Z", + "uniqueQualifier": "-5778436257423026820", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:31:16.119Z", + "uniqueQualifier": "-5778436257423026820", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:31:16.119Z", + "uniqueQualifier": "-5778436257423026820", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:31:16.119Z", + "uniqueQualifier": "-5778436257423026820", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:31:16.119Z", + "uniqueQualifier": "-5778436257423026820", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:31:16.119Z", + "uniqueQualifier": "-5778436257423026820", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:31:16.119Z", + "uniqueQualifier": "-5778436257423026820", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T18:31:16.119Z", + "uniqueQualifier": "-5778436257423026820", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RzCZ9ORG4Owr4cd-IqoUtWxfdvY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:51.398Z", + "uniqueQualifier": "-7889119807750542340", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:51.398Z", + "uniqueQualifier": "-7889119807750542340", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:51.398Z", + "uniqueQualifier": "-7889119807750542340", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:51.398Z", + "uniqueQualifier": "-7889119807750542340", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:51.398Z", + "uniqueQualifier": "-7889119807750542340", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:51.398Z", + "uniqueQualifier": "-7889119807750542340", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:51.398Z", + "uniqueQualifier": "-7889119807750542340", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:51.398Z", + "uniqueQualifier": "-7889119807750542340", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7J35LGFTF6sojhmcfz1-1jPIo9o\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed_Lorraine Ortiz" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:29.655Z", + "uniqueQualifier": "-9183031976333250302", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:29.655Z", + "uniqueQualifier": "-9183031976333250302", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:29.655Z", + "uniqueQualifier": "-9183031976333250302", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:29.655Z", + "uniqueQualifier": "-9183031976333250302", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:29.655Z", + "uniqueQualifier": "-9183031976333250302", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:29.655Z", + "uniqueQualifier": "-9183031976333250302", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:29.655Z", + "uniqueQualifier": "-9183031976333250302", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:29.655Z", + "uniqueQualifier": "-9183031976333250302", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0U5tX-ze-oWoy9hmpzUchhe03M\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:07.694Z", + "uniqueQualifier": "-4619490842213982766", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:07.694Z", + "uniqueQualifier": "-4619490842213982766", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:07.694Z", + "uniqueQualifier": "-4619490842213982766", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:07.694Z", + "uniqueQualifier": "-4619490842213982766", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:07.694Z", + "uniqueQualifier": "-4619490842213982766", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:07.694Z", + "uniqueQualifier": "-4619490842213982766", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:07.694Z", + "uniqueQualifier": "-4619490842213982766", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:41:07.694Z", + "uniqueQualifier": "-4619490842213982766", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C_A-IiNMoJz6_wfaP0ucHMfyF5g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:32:10.562Z", + "uniqueQualifier": "-7442598608420395667", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:32:10.562Z", + "uniqueQualifier": "-7442598608420395667", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:32:10.562Z", + "uniqueQualifier": "-7442598608420395667", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:32:10.562Z", + "uniqueQualifier": "-7442598608420395667", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:32:10.562Z", + "uniqueQualifier": "-7442598608420395667", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:32:10.562Z", + "uniqueQualifier": "-7442598608420395667", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:32:10.562Z", + "uniqueQualifier": "-7442598608420395667", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:32:10.562Z", + "uniqueQualifier": "-7442598608420395667", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S7fIjFfPezLl_xefEZi7h36EGBY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:09:04.331Z", + "uniqueQualifier": "-6365131904920266122", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:09:04.331Z", + "uniqueQualifier": "-6365131904920266122", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:09:04.331Z", + "uniqueQualifier": "-6365131904920266122", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:09:04.331Z", + "uniqueQualifier": "-6365131904920266122", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:09:04.331Z", + "uniqueQualifier": "-6365131904920266122", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:09:04.331Z", + "uniqueQualifier": "-6365131904920266122", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:09:04.331Z", + "uniqueQualifier": "-6365131904920266122", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T20:09:04.331Z", + "uniqueQualifier": "-6365131904920266122", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aEWhPOrL1NpxNPpOAg4kT-mszcg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:52:27.744Z", + "uniqueQualifier": "-9162015220612908901", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:52:27.744Z", + "uniqueQualifier": "-9162015220612908901", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:52:27.744Z", + "uniqueQualifier": "-9162015220612908901", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:52:27.744Z", + "uniqueQualifier": "-9162015220612908901", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:52:27.744Z", + "uniqueQualifier": "-9162015220612908901", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:52:27.744Z", + "uniqueQualifier": "-9162015220612908901", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:52:27.744Z", + "uniqueQualifier": "-9162015220612908901", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:52:27.744Z", + "uniqueQualifier": "-9162015220612908901", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UyUzOUjzPt92B5-lJcJs-UQIw0g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation team_drive_placement_policy" + }, + { + "name": "OLD_VALUE", + "value": "CUSTOM_OU" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation CanCreateSharedDrives" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation org_unit_id_for_new_team_drives" + }, + { + "name": "OLD_VALUE", + "value": "50000000201177472" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_cross_domain_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_admin_only" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_direct_access" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_file_organizer_sharing_folders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kari Gonzalez" + }, + { + "name": "SETTING_NAME", + "value": "Shared Drive Creation new_team_drive_restricts_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:27:36.698Z", + "uniqueQualifier": "-7687371714476857918", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ygW-3Zn08SSOQV-94noY9GQZM-I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:27:36.698Z", + "uniqueQualifier": "-7687371714476857918", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ygW-3Zn08SSOQV-94noY9GQZM-I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:27:36.698Z", + "uniqueQualifier": "-7687371714476857918", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ygW-3Zn08SSOQV-94noY9GQZM-I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-15T19:27:36.698Z", + "uniqueQualifier": "-7687371714476857918", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ygW-3Zn08SSOQV-94noY9GQZM-I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T19:49:17.093Z", + "uniqueQualifier": "-8847021981382581558", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PgMXBWPGSitB7JKaOcr2w7lfj28\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T19:49:17.093Z", + "uniqueQualifier": "-8847021981382581558", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PgMXBWPGSitB7JKaOcr2w7lfj28\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T19:49:17.093Z", + "uniqueQualifier": "-8847021981382581558", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PgMXBWPGSitB7JKaOcr2w7lfj28\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T19:49:17.093Z", + "uniqueQualifier": "-8847021981382581558", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PgMXBWPGSitB7JKaOcr2w7lfj28\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto presence_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto company_owned_only_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto show_drive_fs_download" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Drive and Docs" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Kelly Mcdonald" + }, + { + "name": "SETTING_NAME", + "value": "DriveFsSettingsProto drive_fs_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:27:06.928Z", + "uniqueQualifier": "-7944146643646203860", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/E5Sk8y2gpzavonVy9z29fp7ZPO4\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "PRIVATE" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:26:34.965Z", + "uniqueQualifier": "-7687136886147160443", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HJH8t-IfrkNg-Bt8c3fR3OmrX0k\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "PRIVATE" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:25:50.671Z", + "uniqueQualifier": "-5803808820973916132", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NydWCMr5I5N2JExEHWQWZBzCnF0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "PRIVATE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:25:27.510Z", + "uniqueQualifier": "-5930463038252132668", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/iE4caKrQDTTpXcxplpGVUT80OXQ\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:24:53.674Z", + "uniqueQualifier": "-7950220892565466541", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3P3GRl8HdyivTu8lSxWOaqDmVoE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "PEOPLE_WITH_LINK" + }, + { + "name": "NEW_VALUE", + "value": "PRIVATE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:17:29.681Z", + "uniqueQualifier": "-6765118464842070461", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ffmg7ga4pXupuYpU9HWzP3bDbO8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:17:04.322Z", + "uniqueQualifier": "-4733386038194055901", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/idygIJk1QvFLzxItiS08rvc6zJk\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "CROSS_DOMAIN_MOVES_BLOCKED" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:14:51.717Z", + "uniqueQualifier": "-9155749311370271342", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5AMrU8MnAPshkeRE-ZDnJie2Rto\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "OLD_VALUE", + "value": "NAMED_PARTIES_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "OLD_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:14:37.153Z", + "uniqueQualifier": "-6835896554806705476", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TTjorX_ahOLCunu3D-EUedU0lKw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "CROSS_DOMAIN_MOVES_BLOCKED" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:56:09.779Z", + "uniqueQualifier": "-6912066191548260718", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/X6h5Z521EvGbgIwXwOetRXfsnzk\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_OR_NAMED_PARTIES" + }, + { + "name": "NEW_VALUE", + "value": "NAMED_PARTIES_ONLY" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:55:57.282Z", + "uniqueQualifier": "-5445592750742357330", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dyg5druXqwZ5UIqDFv7-aS0At60\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_OR_NAMED_PARTIES" + }, + { + "name": "NEW_VALUE", + "value": "NAMED_PARTIES_ONLY" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:55:26.099Z", + "uniqueQualifier": "-8590873199370021925", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9itWsUAhngzp_3_D8VeSlI8YuDg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_OR_NAMED_PARTIES" + }, + { + "name": "NEW_VALUE", + "value": "NAMED_PARTIES_ONLY" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:47:49.454Z", + "uniqueQualifier": "-8709349504202426632", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ghxviKdkfUPFtU3TMZoxFaSLYbQ\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:47:20.159Z", + "uniqueQualifier": "-8298476870320784478", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Y9gPXtlcVa394pMy6DQtXvj9tr4\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:46:14.186Z", + "uniqueQualifier": "-7761367611665967694", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VTOPBRNjKcsTVvRAXxWm4YDz5Qs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:44:27.074Z", + "uniqueQualifier": "-6775056335327719702", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yBCCIKK2kZSJn3XJFMNTsR8x538\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:38:29.520Z", + "uniqueQualifier": "-4863717126396739868", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JfA3ndBTmF0baZyKKVMvxu_6lN0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:36:07.387Z", + "uniqueQualifier": "-4783889702746143208", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/y8J-FjAkrn7ztQ9AqyzAh8A3ctE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:35:16.991Z", + "uniqueQualifier": "-7151771568778898868", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5-5lvUKuHodd4sgbdc3cZJmCYFg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ANONYMOUS_PREVIEW" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:34:30.609Z", + "uniqueQualifier": "-6696583487931856173", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gfrJxMdny0ZKYD2c0oU6K2W3_m0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:33:36.491Z", + "uniqueQualifier": "-7581744417081138690", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KUYy0C48mJdiMb2NzZ8Q39835G8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:33:03.086Z", + "uniqueQualifier": "-5773916207317160148", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Q-o1UwqxQCF_hab73_Yk0FhVgu4\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:32:34.115Z", + "uniqueQualifier": "-7458105903516037383", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/e7kdbXGl6meu_vfGJh1Yk8JTVoA\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:27:12.927Z", + "uniqueQualifier": "-7461899653359069920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gAgqBi_CXmVmfeGaTI85-XGuo7I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:21:16.064Z", + "uniqueQualifier": "-7997590581926713789", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Mmyl9WIJTUDY9CrNe1G1huL88Eg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:20:35.793Z", + "uniqueQualifier": "-5920823545359285575", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AWdwjy2SrLEn3ldpIPqsSD_8vq4\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:17:47.026Z", + "uniqueQualifier": "-6722813939434909812", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vnLkNCeVaHl5WquaafIQyhwqgPE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:16:12.878Z", + "uniqueQualifier": "-6930857428333639578", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gEbtQUBQpVvKLpXnJHGm3qIBEsg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:16:00.687Z", + "uniqueQualifier": "-7103386064693520920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Dejk3gH2KVGoS2Dd82vD8NydFdE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:12:12.744Z", + "uniqueQualifier": "-9193161445238497959", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XlHPjXuTH83VTIIL_gmv0N04PSQ\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:11:39.233Z", + "uniqueQualifier": "-8612615594151420338", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dG7Ik7qQaPuz4Sz8nB0-TV_k-q0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Jean Reed" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "DOMAIN_OR_NAMED_PARTIES" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T16:09:43.677Z", + "uniqueQualifier": "-4701204507230431800", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XZ1XkUsulkTHJrVrHO3Et20YGNA\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-14T01:47:05.920Z", + "uniqueQualifier": "-7848404005276707745", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YaTjdWxn01ChMqJUeAkXp3yx-IE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-26T18:45:13.779Z", + "uniqueQualifier": "-5268971205650755426", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hTXDgd857feJYuoC4aNwVdOG1ZM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-26T18:42:43.001Z", + "uniqueQualifier": "-5196397956751072295", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uTtitqfzWGg9cqGGGrbB_OTUw1g\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-26T18:41:44.207Z", + "uniqueQualifier": "-9118608530720037130", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S4D4z_DK1DOlhXdmpS-vt8StDhk\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ANONYMOUS_PREVIEW" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-22T15:40:17.718Z", + "uniqueQualifier": "-8920524531189699478", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_YecVtiw2ItN4hJJxSuni9lEioQ\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-22T15:39:11.905Z", + "uniqueQualifier": "-5438883892112350117", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/SipykWcpAAW9KtuOUTRoT6tkuUA\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ANONYMOUS_PREVIEW" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-22T15:38:31.518Z", + "uniqueQualifier": "-6118674679470423833", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jQmIFm7Gm30QeYrrbSPWXC8DKnE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-22T15:37:53.901Z", + "uniqueQualifier": "-7024383332220076788", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Q7Qoq-mu-6gbXCdISiIqE49mBz4\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-22T13:27:00.523Z", + "uniqueQualifier": "-4960684235765873108", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dgYRNfYfFAThRH08jWEYfu2rgc0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ANONYMOUS_PREVIEW" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-22T13:24:54.154Z", + "uniqueQualifier": "-6056687320584359171", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/eKr0mKdRDYyzKepjoy7Rt5VURp0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-22T13:23:44.111Z", + "uniqueQualifier": "-4940768169283370672", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NN9ixv0X1cn3FSrDXJ9wZkxtba0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T19:07:32.961Z", + "uniqueQualifier": "-9109730953305470166", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Gzd8vQrYqLztudMpHq_i656vI50\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T19:06:18.163Z", + "uniqueQualifier": "-4793765791071697982", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jd3167-aJf0YOgde6YbLUadP27A\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T19:04:05.268Z", + "uniqueQualifier": "-7157175437857319167", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cu4kUq_NQr6kScd0oJykBrFGMhI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "NEW_VALUE", + "value": "DOMAIN_OR_NAMED_PARTIES" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T19:03:53.755Z", + "uniqueQualifier": "-7226852512451538185", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/IXVo7eRs4dY494MmN3s8hV5J-L8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ANONYMOUS_PREVIEW" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T19:02:47.856Z", + "uniqueQualifier": "-6151338593244363287", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JpuJFFmqyXGuleBlSow4stumOD0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T19:02:21.006Z", + "uniqueQualifier": "-7903207304489064010", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UsFhTqmy4a6Pbo6nyPG60wu4wko\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-25T16:20:08.839Z", + "uniqueQualifier": "-8815463869247913381", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UK37wXu2KauqCu3YBwYtYNfFBh8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "ALLOWED" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "DOMAIN_OR_NAMED_PARTIES" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-25T16:13:49.911Z", + "uniqueQualifier": "-8039702271720117601", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ZQ7EN2WiMLQHLnX6CiiylPfeOas\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NAMED_PARTIES_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-25T16:12:10.607Z", + "uniqueQualifier": "-7515679299770511958", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HBhxwhd_X0roteaDeoVW-h1SwDo\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_OR_NAMED_PARTIES" + }, + { + "name": "NEW_VALUE", + "value": "NAMED_PARTIES_ONLY" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-07T19:05:23.561Z", + "uniqueQualifier": "-6700147551241562173", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9N0shNPJIfvwlbrmlQC1BvmD5jw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_DOCS_ADD_ONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-30T13:38:13.025Z", + "uniqueQualifier": "-8276932653988986712", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/h3QEsA3YOlDF8SSp7fH92JhfNYA\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "PEOPLE_WITH_LINK" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-30T13:19:26.754Z", + "uniqueQualifier": "-8765484716300426017", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JZUNG2hYq8quXTFORm2KzS8-y_Q\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "CROSS_DOMAIN_MOVES_BLOCKED" + }, + { + "name": "NEW_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-30T12:52:06.374Z", + "uniqueQualifier": "-4963375480869410544", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RkEASVAa8tKpVyda3-TbkRzPdA4\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-30T12:50:50.744Z", + "uniqueQualifier": "-5489424309964445928", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/g2YflncNQH6p_oW8hvlr80i4VYk\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-30T12:48:25.037Z", + "uniqueQualifier": "-7903259954432837953", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PoBCxs8XlbiGdWhKoFoYzstoe6s\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ANONYMOUS_PREVIEW" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-30T12:45:47.120Z", + "uniqueQualifier": "-6368917975264585180", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/q6UraNRImKUG_Z4AMYvhFSw5578\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:01:19.658Z", + "uniqueQualifier": "-5512031835958223656", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V0Dd5_vayBxNrqO5iLkUyoGgOgY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "PEOPLE_WITH_LINK" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:00:30.945Z", + "uniqueQualifier": "-8437627154844585479", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KWS33W6ykxqzdrLL3f5F5qyvsPA\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "DEFAULT_LINK_SHARING_FOR_NEW_DOCS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "PRIVATE" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:59:13.437Z", + "uniqueQualifier": "-5034424549889268676", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/H4esgz7_cCNu1YcHG_LBwbovZUU\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" + }, + { + "name": "NEW_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:52:22.010Z", + "uniqueQualifier": "-7460390437878111573", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bM8iRzZxLBsWUOd-E1PvvRjZHSc\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "CROSS_DOMAIN_MOVES_BLOCKED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:50:52.345Z", + "uniqueQualifier": "-8537245521744072937", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ohb5MjEOBJenO8KTSPIpqjDznZE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" + }, + { + "name": "NEW_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_ONLY" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:50:22.458Z", + "uniqueQualifier": "-5472865396707533555", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wh8VA2v4Oqcjua7LJPc87F6rKXw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:49:34.327Z", + "uniqueQualifier": "-5632628409372959926", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pU4Y3MzQLbMoA1aQeCMPNbRpwao\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "NEW_VALUE", + "value": "DOMAIN_OR_NAMED_PARTIES" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:47:18.037Z", + "uniqueQualifier": "-8183805591257310150", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ea0Yy94M7AumynKMVhqX-QqRDBw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ALLOWED" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_OR_NAMED_PARTIES" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:46:42.480Z", + "uniqueQualifier": "-6830170049807294148", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_nN4_cj2zmQXWLxXK6LQjrLAsVo\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_OR_NAMED_PARTIES" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:41:49.439Z", + "uniqueQualifier": "-5666308078769713370", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QCS_KO-MOtjKMoh1FNjt1HfFRe4\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "DOMAIN_OR_NAMED_PARTIES" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "ALLOWED" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:41:29.338Z", + "uniqueQualifier": "-7665661374235159942", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nhUfo0pn7pjdbRXLGX2cX8rMA5Y\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_OR_NAMED_PARTIES" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "OLD_VALUE", + "value": "ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "OLD_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "OLD_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:40:42.483Z", + "uniqueQualifier": "-5277654674290674003", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ozbPSyUxHu9--IwdzY8o_1zM2EY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "DOMAIN_OR_NAMED_PARTIES" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "ALLOWED" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "ANONYMOUS_PREVIEW" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:40:14.526Z", + "uniqueQualifier": "-5638769506005373498", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dr4u45N5rSHBip8BfAnmrQaAdO4\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:39:49.051Z", + "uniqueQualifier": "-9025871940295280478", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YIWLpm7KHVfXhFAeMCjavcnp3uo\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ANONYMOUS_PREVIEW" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:39:12.441Z", + "uniqueQualifier": "-7070790931937106138", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/knEonqhIirkMa-Ps0q5jWhFQW7I\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_OR_NAMED_PARTIES" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:34:44.016Z", + "uniqueQualifier": "-5121197142582492918", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ge7SKNQst14Oq4mREvqrkOyEFeo\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ALLOWED" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:34:05.391Z", + "uniqueQualifier": "-4907359182133969418", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hDwLZhiLtvuJb3sBojvsjoiexi8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:14:50.339Z", + "uniqueQualifier": "-8141534439372853517", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V-Bau1q_nCDmcGsXK2h2wKLAd5U\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:13:56.292Z", + "uniqueQualifier": "-4655805841861063156", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bbyPGHPsQbZH6hr_xFhTiY4D4j8\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:03:05.956Z", + "uniqueQualifier": "-4868175873257672952", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rlqJY4JYULEwEaEwzbjHMX6M0KA\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T20:01:25.354Z", + "uniqueQualifier": "-8480740503864292422", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TEPMZQfg4eKgePZ4vtYURGKrrKA\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_ACCESS_CHECKER_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "DOMAIN_OR_NAMED_PARTIES" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "PUBLISHING_TO_WEB" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T19:55:39.734Z", + "uniqueQualifier": "-5846236110053700048", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7WiZB5lwMi9ThT1C3_DioYKctVo\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ANONYMOUS_PREVIEW" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T19:54:51.150Z", + "uniqueQualifier": "-8687905981791080107", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9UtfaLR71gKDAIwjMIm_fZtsGwY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-24T15:40:51.575Z", + "uniqueQualifier": "-6237580445307781830", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TQKLfECntjms4wgVeWdPES5V03c\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_TEAM_DRIVE_CROSS_DOMAIN_OPTIONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "CROSS_DOMAIN_MOVES_BLOCKED" + }, + { + "name": "NEW_VALUE", + "value": "CROSS_DOMAIN_FROM_INTERNAL_OR_EXTERNAL" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-24T15:39:38.983Z", + "uniqueQualifier": "-6270019679899100063", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RpPbuR0JFJcSZOcI8u52w6qpr80\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ANONYMOUS_PREVIEW" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-20T17:04:44.067Z", + "uniqueQualifier": "-8802373587724733056", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/qRQrLFSP-ZLWjm3Iz3wypB91JAM\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T20:57:41.840Z", + "uniqueQualifier": "-8039744564120159915", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9Zt0HZzGkGyHgfzA8t1se4R0df0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_NOT_ALLOWED_BUT_MAY_RECEIVE_FILES" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T20:37:10.613Z", + "uniqueQualifier": "-8720028330680924411", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jZzv0tbNwXEGEi6bGKZTQGnPLNo\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T20:35:34.237Z", + "uniqueQualifier": "-5564878258928787756", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AIt27npNmDZqbhiddm09rwYmWAE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T20:34:31.440Z", + "uniqueQualifier": "-5426235369298502627", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RuJk9ZmKzpTqBjVBjkZPdX76SIg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ANONYMOUS_PREVIEW" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T20:29:46.167Z", + "uniqueQualifier": "-8040714963875386222", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/U-FeDmlS29F0BfEoJ9Tqw-8ikew\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T20:27:50.538Z", + "uniqueQualifier": "-7676637336093267136", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/IvslrFIBXTLx4lszp4my-6xIJsw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T20:23:43.816Z", + "uniqueQualifier": "-8200569121459815024", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oDGagI18Xy25GRPEkBRzthf9H-U\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T20:18:06.932Z", + "uniqueQualifier": "-8440873117292908500", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ur44ZyhM-EgIlVo3e5UjLZEHAfQ\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T20:15:18.738Z", + "uniqueQualifier": "-8613270469575703332", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/eT16rSRbq3MpSol66M9D8sjvbeI\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T20:09:29.165Z", + "uniqueQualifier": "-5996963305394931086", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xwNIzytGFSxiCJRLPRZ8YLcOtBg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T20:07:02.074Z", + "uniqueQualifier": "-7562367682366519617", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rQfvUGkHvELjsynwvbKuQuXT0DE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_AND_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-17T19:56:54.345Z", + "uniqueQualifier": "-5937042150028660281", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/J9neS0P-5mtv333WUOgdKkrJ_eE\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ANONYMOUS_PREVIEW" + }, + { + "name": "NEW_VALUE", + "value": "NOT_ALLOWED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-16T16:25:56.029Z", + "uniqueQualifier": "-5260620625849144348", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JLjAwiySXm7VPjls2RjthgPHd2E\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_INVITES_TO_NON_GOOGLE_ACCOUNTS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "NOT_ALLOWED" + }, + { + "name": "NEW_VALUE", + "value": "ANONYMOUS_PREVIEW" + } + ] + }, + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + }, + { + "name": "NEW_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-16T16:25:25.030Z", + "uniqueQualifier": "-5506393425974342833", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UaTS6FyYZjr0a2G4B12bxZ8-pFA\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SHARING_OUTSIDE_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "SHARING_ALLOWED_WITH_WARNING" + }, + { + "name": "NEW_VALUE", + "value": "TRUSTED_DOMAINS_ALLOWED_WITH_WARNING_MAY_RECEIVE_FILES_FROM_ANYONE" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-14T20:21:29.543Z", + "uniqueQualifier": "-8708570625830120163", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/IXIbCZxYpIB_n5fpAdLkh1kMoIU\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_DOCS_ADD_ONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-14T20:19:59.366Z", + "uniqueQualifier": "-7490931851590830670", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/d2UpNpgLQW7zLi2prwt9N1NrQZ0\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_DOCS_ADD_ONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-14T20:14:05.082Z", + "uniqueQualifier": "-6015589521941302989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rN6lK81xkH-1B-otJvMFtM6D0Ww\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_DOCS_ADD_ONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-14T20:04:39.548Z", + "uniqueQualifier": "-6135864704255532904", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/lGDC_OHVFxqrvdVzcnWVm4MDsWg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_DOCS_ADD_ONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "GROUP_EMAIL", + "value": "doyleamy@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T20:40:30.314Z", + "uniqueQualifier": "-6842087065931857476", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5UBNJVbe0pHEayvPW1h48Rm5G4o\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_DRIVE_APPS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T20:40:19.095Z", + "uniqueQualifier": "-5496998031902079175", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dXAlZF5WKKranBk18hIFEZ1XUNs\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_DRIVE_APPS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T20:39:54.207Z", + "uniqueQualifier": "-7050431564971038141", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tVa0CKql1_Ah5FCae_b5eiC0Q7k\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_DRIVE_APPS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T20:39:46.208Z", + "uniqueQualifier": "-5975427250558635210", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QQVQ1sjNb66hOEOJKzd3BMVScfY\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_DRIVE_APPS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T20:39:15.294Z", + "uniqueQualifier": "-4932522718611212289", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_Ro4QbfqGwlulJGB5SzaJLDwMSw\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_DRIVE_APPS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T19:59:33.463Z", + "uniqueQualifier": "-5857945453611611749", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uX-vSW2kWjddpDG8bB5ZbYn2vps\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_DRIVE_APPS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T19:56:37.204Z", + "uniqueQualifier": "-8223420323655920486", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mUwJxL6VVaUKvoMWyqzHW3sJr1Y\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_DOCS_ADD_ONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-13T19:54:22.714Z", + "uniqueQualifier": "-8920311772484149483", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/n_XFcd9naFvyK5WIM70UyfrK8tg\"", + "actor": { + "callerType": "USER", + "email": "doyleamy@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "194.120.78.92", + "events": [ + { + "type": "DOCS_SETTINGS", + "name": "CHANGE_DOCS_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_DOCS_ADD_ONS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Charles Shea" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + } + ] + }, + "gmail_logs": { + "items": [ + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T16:27:46.008Z", + "uniqueQualifier": "-8848929114132654231", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zkqZNgX_KNWq0_2-Fzg28Md4p44\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto is_empty" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T16:21:31.290Z", + "uniqueQualifier": "-8832547985086975437", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6gAEBVgM5pv0YlAcMKgaI_bEbX8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto is_empty" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T16:17:03.137Z", + "uniqueQualifier": "-7992347785600499742", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/lBovwiFYmcRkfGUtqvUtKdkupgY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto is_empty" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T16:15:43.685Z", + "uniqueQualifier": "-5071910517359774934", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bHKH5zu-6g7eyc29U0MP2o_U2fM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto is_empty" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-10T22:14:36.427Z", + "uniqueQualifier": "-8529049152175194588", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OsohTS-7ttLaHyxQ2NpnV1gMPWU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto is_empty" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-09T23:51:29.928Z", + "uniqueQualifier": "-6964519439010196413", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/emdklHZ0C1FVbg3nwhRcz1_xFq8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto is_empty" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-09T23:50:57.451Z", + "uniqueQualifier": "-5191076915310136317", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tVgtU702r15E6-2meyu4HvC2YNI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" + }, + { + "name": "OLD_VALUE", + "value": "[188.150.109.63]" + }, + { + "name": "NEW_VALUE", + "value": "[188.150.109.63/24, 188.150.109.63]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-09T23:50:07.583Z", + "uniqueQualifier": "-7434000845670004900", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/poScMPYR2PmJPO6gEdtUptr3Swo\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto is_empty" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T17:38:56.782Z", + "uniqueQualifier": "-5887092291182430158", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_VwDnb1WSwQPbUlhXMnRAFFYmWo\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto is_empty" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T15:59:32.459Z", + "uniqueQualifier": "-8733976945830710318", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RskGutc-vrG8CSGBTxNUu_YolBU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto is_empty" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T15:48:49.723Z", + "uniqueQualifier": "-9189739910024391630", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ZuEdnjBrv_o3oxNuqsaUAszZ7Qs\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto is_empty" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T15:47:24.312Z", + "uniqueQualifier": "-7837441471108441253", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/icy_IIE0ngNCt7uJu4jW7lFhIZA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" + }, + { + "name": "OLD_VALUE", + "value": "[188.150.109.63, 188.150.109.63]" + }, + { + "name": "NEW_VALUE", + "value": "[188.150.109.63]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:38:57.400Z", + "uniqueQualifier": "-4689387399652934261", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DGzJXkMGJ7QnfWqYINhUwj2zPac\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AttachmentDeepScanningSettingsProto deep_scanning_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:38:09.730Z", + "uniqueQualifier": "-6178355671728924674", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/f3WvM0cBpdA0AkomA-Zr6sAUmZo\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AttachmentDeepScanningSettingsProto deep_scanning_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:33:37.078Z", + "uniqueQualifier": "-8501308143648809297", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/fhLu426_ZYb9-NmHiUAGv41FjEg\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:33:00.743Z", + "uniqueQualifier": "-6797513966381536657", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/LpBXx-ldZAqd8Vdph5YZSXWQO9w\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:32:01.828Z", + "uniqueQualifier": "-8657803367078535094", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/57X9Z1BEwULxe_ZRnLQ8A59ZLbA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto is_empty" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:25:03.455Z", + "uniqueQualifier": "-7928851297968379062", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8UtLhvUSPQu-tX4KwWzsdIxpGiA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "OutOfDomainWarningProto disable_untrusted_recipient_warning" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:24:29.227Z", + "uniqueQualifier": "-8945918429208891878", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/La1FcpUvppAQancLEPv5NhE2FT0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "OutOfDomainWarningProto disable_untrusted_recipient_warning" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:36:53.155Z", + "uniqueQualifier": "-8371955607249771398", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CiTCyailzz3mIxPys-JIjeyQ1Ao\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:36:04.917Z", + "uniqueQualifier": "-7947649179680383686", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wRvhj4DhiTFR6_WZ-Pv-b08vBeE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:36:04.917Z", + "uniqueQualifier": "-7947649179680383686", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wRvhj4DhiTFR6_WZ-Pv-b08vBeE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:36:04.917Z", + "uniqueQualifier": "-7947649179680383686", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wRvhj4DhiTFR6_WZ-Pv-b08vBeE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:27:30.529Z", + "uniqueQualifier": "-7663915504418701169", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EAMY99ZoaT1OVdpevYhuoWnhG5A\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:27:30.529Z", + "uniqueQualifier": "-7663915504418701169", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EAMY99ZoaT1OVdpevYhuoWnhG5A\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:27:30.529Z", + "uniqueQualifier": "-7663915504418701169", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EAMY99ZoaT1OVdpevYhuoWnhG5A\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:15.033Z", + "uniqueQualifier": "-6919142310536553003", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DsEu-OY7y-kKxxV47fD4dDk_54g\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:18:31.883Z", + "uniqueQualifier": "-7585817562221830446", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AmOHFS2oKgsTZ_wbAnzgVY4Py1o\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:17:14.337Z", + "uniqueQualifier": "-5105884156652031705", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nirVI_zK3-HddAEWTPD7R-BlYHQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:17:14.337Z", + "uniqueQualifier": "-5105884156652031705", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nirVI_zK3-HddAEWTPD7R-BlYHQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:16:22.327Z", + "uniqueQualifier": "-7980295643510854367", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4HBSrP7vUUH0nN-M-sP2d9ITms4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:16:22.327Z", + "uniqueQualifier": "-7980295643510854367", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4HBSrP7vUUH0nN-M-sP2d9ITms4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:16:22.327Z", + "uniqueQualifier": "-7980295643510854367", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4HBSrP7vUUH0nN-M-sP2d9ITms4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:15:43.912Z", + "uniqueQualifier": "-6158164907853884831", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/H6PeKvfXg54VsdY5tO07jAAdGA8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:15:43.912Z", + "uniqueQualifier": "-6158164907853884831", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/H6PeKvfXg54VsdY5tO07jAAdGA8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:15:08.713Z", + "uniqueQualifier": "-6216704183880669864", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cT41juAnkY_R5ZmfmQmXFXHFN9U\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:14:36.151Z", + "uniqueQualifier": "-8396277888756754417", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BBCWy5_c2VwtqlSZohB5SsTE5A\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:14:36.151Z", + "uniqueQualifier": "-8396277888756754417", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BBCWy5_c2VwtqlSZohB5SsTE5A\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:14:36.151Z", + "uniqueQualifier": "-8396277888756754417", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BBCWy5_c2VwtqlSZohB5SsTE5A\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:05:53.099Z", + "uniqueQualifier": "-8323172966416666830", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dTBcqvFsWfErHsCaQ6W6fDbPQdQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:05:53.099Z", + "uniqueQualifier": "-8323172966416666830", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dTBcqvFsWfErHsCaQ6W6fDbPQdQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:04:11.075Z", + "uniqueQualifier": "-7030839477096046416", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Vl_4ofoHUm6jJQbRR6EFt1k0L4E\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:04:11.075Z", + "uniqueQualifier": "-7030839477096046416", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Vl_4ofoHUm6jJQbRR6EFt1k0L4E\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:01:04.362Z", + "uniqueQualifier": "-7836828524087489632", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/onugfAERSg1qwq5cdJgiu4CxqHY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T18:59:35.384Z", + "uniqueQualifier": "-8659252123438030504", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FltRrmaeigQLJO6g95rohQD2lxc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T18:58:52.811Z", + "uniqueQualifier": "-7161697552967858524", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ULvy6MQzX0VWVVgxXhb9xMgGKFM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:25:13.793Z", + "uniqueQualifier": "-5400935928799441712", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nQlmNVu3Us9EJWEPHXpQts8hH_g\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:24:13.352Z", + "uniqueQualifier": "-6171582183769986444", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zc4c8Zl-EhtrrZphE-D0IaoAoT0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:23:50.761Z", + "uniqueQualifier": "-4782525883875633719", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C5p05NSn_tZePUUDkNdzADQSQbA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:19:20.318Z", + "uniqueQualifier": "-4731115240746192341", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jX93gjqaQ1jeksRPykL_S-ll2CY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:17:43.694Z", + "uniqueQualifier": "-6742432895034531457", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VdwErl8q0-RT1kxz2VWQnFDn5DA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:16:18.374Z", + "uniqueQualifier": "-7957734652107161728", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pXpDKtv_JTYdzRcLoYeOMNpIOoQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:12:23.983Z", + "uniqueQualifier": "-5235624308351538119", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7fM0O_x-CeVy_rVr3KLHKhGgUJ8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:12:23.983Z", + "uniqueQualifier": "-5235624308351538119", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7fM0O_x-CeVy_rVr3KLHKhGgUJ8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:11:41.471Z", + "uniqueQualifier": "-6519118360921163766", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KemrEBKIn6coHra08M9AR3tBfRU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:11:41.471Z", + "uniqueQualifier": "-6519118360921163766", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KemrEBKIn6coHra08M9AR3tBfRU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:09:18.722Z", + "uniqueQualifier": "-6109225818939049868", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O70UKtXcAODSYMyHEXf6n7LRPuE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:07:22.449Z", + "uniqueQualifier": "-5825128916415144628", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/G9AwnNoYZ62yw5KAKG1AEEqfOFw\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:03:03.711Z", + "uniqueQualifier": "-8412557248197588305", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NjnHJzSxIcjcUNmZsUT6emKodNk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:02:29.805Z", + "uniqueQualifier": "-5851802406607686631", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S5ANOHFPItRrlP_DCrncsjwHHWY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:02:29.805Z", + "uniqueQualifier": "-5851802406607686631", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/S5ANOHFPItRrlP_DCrncsjwHHWY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T19:54:57.368Z", + "uniqueQualifier": "-5680635710674996360", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/YIyCoigkeVnJtioojNfIejF9QJY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-11T02:06:06.231Z", + "uniqueQualifier": "-8062931828956841656", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kBAZobmhrEIq9b52zVcqS4zDpTw\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-11T02:04:42.418Z", + "uniqueQualifier": "-7627585719562007910", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mia8tlJTxJ6zc97yiWcIbGJWBA4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-11T00:08:13.113Z", + "uniqueQualifier": "-5653375285689313670", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/29UkwhcLRPKfikP5CJ1kOU_vBb8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-11T00:06:10.386Z", + "uniqueQualifier": "-8191435850033108527", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yrvZzggEds6CE6M8-tmQQ0Zygjg\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-11T00:05:21.622Z", + "uniqueQualifier": "-9040069489614231845", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CbmXKVGIMQ7LAnYoWY3MURn0q-c\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-11T00:00:13.604Z", + "uniqueQualifier": "-5997613912720111457", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JAiT2QgbTJPqUuj02c4QXAUARtw\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T23:59:11.540Z", + "uniqueQualifier": "-5763607295736349617", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/SobjtCcUzRUuhTRTr5KTtD36Anw\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T23:59:04.105Z", + "uniqueQualifier": "-8467452874338805225", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mOJWPDGt25EgTf_ADtaZXtJFKXI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T23:58:17.294Z", + "uniqueQualifier": "-7199836013981546899", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dHw6tqpK9WONfzyFncypyAkuS-4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T23:56:59.298Z", + "uniqueQualifier": "-9196738379135788737", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XkXwFrYM2fhr6O6U7rhSKdbcVgE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T23:56:59.298Z", + "uniqueQualifier": "-9196738379135788737", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XkXwFrYM2fhr6O6U7rhSKdbcVgE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T23:56:59.298Z", + "uniqueQualifier": "-9196738379135788737", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XkXwFrYM2fhr6O6U7rhSKdbcVgE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T23:54:10.070Z", + "uniqueQualifier": "-5211995576523371879", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bXbUndCK3qnx57bFfnOskJs7aUk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T23:47:42.228Z", + "uniqueQualifier": "-8738869030035506297", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/K0rwpH6BhgXjnd44_dG3i7ExMHc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T23:41:42.833Z", + "uniqueQualifier": "-8398482386462767749", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Pc7_mLIbr1OwdAFWFHya2ViRmQc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-10T23:41:42.833Z", + "uniqueQualifier": "-8398482386462767749", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Pc7_mLIbr1OwdAFWFHya2ViRmQc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-28T22:34:12.578Z", + "uniqueQualifier": "-9182850556781017232", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4wiZi1L1F4mvEV2iXo3MPPLlKCQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-28T22:34:12.578Z", + "uniqueQualifier": "-9182850556781017232", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4wiZi1L1F4mvEV2iXo3MPPLlKCQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-28T22:34:12.578Z", + "uniqueQualifier": "-9182850556781017232", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4wiZi1L1F4mvEV2iXo3MPPLlKCQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-28T22:34:12.578Z", + "uniqueQualifier": "-9182850556781017232", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4wiZi1L1F4mvEV2iXo3MPPLlKCQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-28T22:34:12.578Z", + "uniqueQualifier": "-9182850556781017232", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/4wiZi1L1F4mvEV2iXo3MPPLlKCQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-28T21:18:43.765Z", + "uniqueQualifier": "-7590912919710725305", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CawqPiHMpnKkg3RTcNSZHR6aT1Y\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-28T19:14:13.423Z", + "uniqueQualifier": "-8307818036636199840", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mcCPrbdfEF46FLEdLvEI9h2vhKo\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:40:08.349Z", + "uniqueQualifier": "-8368076751569910148", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vwcVAiDsgw4WpDOOmEDlAPfWXIM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:39:53.846Z", + "uniqueQualifier": "-5715036453442913148", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Zy5kQq1vW0n8FDAU9-DSVOoshig\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:39:42.827Z", + "uniqueQualifier": "-6315532632077812227", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mBdu4XWJlXYyiXHYhx5njmWmxsU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "Private groups only" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:38:04.619Z", + "uniqueQualifier": "-4710019258850651884", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jhLBM9LRg1jpMK-GbrgDFMPAVvs\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "NEW_VALUE", + "value": "Private groups only" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:37:52.285Z", + "uniqueQualifier": "-4735039216780775996", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/P8n4OX0hvheuvjV7z3VWRcoA6RA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "Private groups only" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:37:52.285Z", + "uniqueQualifier": "-4735039216780775996", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/P8n4OX0hvheuvjV7z3VWRcoA6RA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "Private groups only" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:35:02.447Z", + "uniqueQualifier": "-6329290811650545738", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_J_XzmN31Ll2Xc9fN7juGvlVALM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-15T20:28:29.703Z", + "uniqueQualifier": "-6613366801859772006", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8HoN2rY5lrbYOoN-e5f_nVDHP5k\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-15T20:28:29.703Z", + "uniqueQualifier": "-6613366801859772006", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8HoN2rY5lrbYOoN-e5f_nVDHP5k\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-15T20:28:29.703Z", + "uniqueQualifier": "-6613366801859772006", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8HoN2rY5lrbYOoN-e5f_nVDHP5k\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-15T20:26:14.487Z", + "uniqueQualifier": "-8027206714913178980", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O5h1XEQp1AOSwmgvcDgG41Pg6Q0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-15T20:26:14.487Z", + "uniqueQualifier": "-8027206714913178980", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O5h1XEQp1AOSwmgvcDgG41Pg6Q0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-15T20:26:14.487Z", + "uniqueQualifier": "-8027206714913178980", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O5h1XEQp1AOSwmgvcDgG41Pg6Q0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T23:56:07.675Z", + "uniqueQualifier": "-6212328187570160412", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cVoMaGDZYhd8PqvpxqJOgUUrMKo\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T22:06:48.770Z", + "uniqueQualifier": "-4847195203939570330", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/52-GQMcZSkENhW9ho4sTlDgzhfU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:49:16.737Z", + "uniqueQualifier": "-9013844798716414352", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ma3XAPMYq2IVzLGJiSkT3CD1R5E\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:49:16.737Z", + "uniqueQualifier": "-9013844798716414352", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ma3XAPMYq2IVzLGJiSkT3CD1R5E\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:48:30.595Z", + "uniqueQualifier": "-7661033378720535879", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hx5kz16IU_mer_3UyQmAWFA5rcg\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:48:30.595Z", + "uniqueQualifier": "-7661033378720535879", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hx5kz16IU_mer_3UyQmAWFA5rcg\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:48:30.595Z", + "uniqueQualifier": "-7661033378720535879", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hx5kz16IU_mer_3UyQmAWFA5rcg\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:48:30.595Z", + "uniqueQualifier": "-7661033378720535879", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hx5kz16IU_mer_3UyQmAWFA5rcg\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:48:30.595Z", + "uniqueQualifier": "-7661033378720535879", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hx5kz16IU_mer_3UyQmAWFA5rcg\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:48:30.595Z", + "uniqueQualifier": "-7661033378720535879", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hx5kz16IU_mer_3UyQmAWFA5rcg\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:48:16.275Z", + "uniqueQualifier": "-7036895913410872704", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vCM12UYpR_ogBowiir5q1JLEmkU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:47:34.403Z", + "uniqueQualifier": "-8423045455482383644", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CcppBowJpipbEQeGKrPbvfis19Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:47:34.403Z", + "uniqueQualifier": "-8423045455482383644", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CcppBowJpipbEQeGKrPbvfis19Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:47:34.403Z", + "uniqueQualifier": "-8423045455482383644", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CcppBowJpipbEQeGKrPbvfis19Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:47:34.403Z", + "uniqueQualifier": "-8423045455482383644", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CcppBowJpipbEQeGKrPbvfis19Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:47:34.403Z", + "uniqueQualifier": "-8423045455482383644", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CcppBowJpipbEQeGKrPbvfis19Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:35:49.525Z", + "uniqueQualifier": "-7098640341643906972", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0k0_4obIHn-chd1Yw3spwz0un3w\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:35:49.525Z", + "uniqueQualifier": "-7098640341643906972", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0k0_4obIHn-chd1Yw3spwz0un3w\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:35:49.525Z", + "uniqueQualifier": "-7098640341643906972", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0k0_4obIHn-chd1Yw3spwz0un3w\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T21:35:49.525Z", + "uniqueQualifier": "-7098640341643906972", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0k0_4obIHn-chd1Yw3spwz0un3w\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T18:32:39.558Z", + "uniqueQualifier": "-9072199906074559768", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/drgyRVIMuDhO-mShcSlc25SztCA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T18:32:27.661Z", + "uniqueQualifier": "-5163174303074193628", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/224f5ivFEyb90ZYX8OBpLZEwPmU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:57:28.690Z", + "uniqueQualifier": "-8619184176513666546", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UAvJqxcqS0rqVdYKJzWzyzouucY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:55:27.286Z", + "uniqueQualifier": "-8391640015749448948", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mwLUUTUyUKZaCpCTUZVzFx8DI-I\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:55:18.106Z", + "uniqueQualifier": "-7594954669204929315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/h89as5h5kR5DEmOnDJMG2FtpEno\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:42:22.765Z", + "uniqueQualifier": "-7292163148509490394", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jyqz5AN4bS1kOswLCH0fdO6GZkk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:42:22.765Z", + "uniqueQualifier": "-7292163148509490394", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jyqz5AN4bS1kOswLCH0fdO6GZkk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:40:33.581Z", + "uniqueQualifier": "-6530383413477844928", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DJxz7JDE59LvIfHdOhexRzhWu2k\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:40:33.581Z", + "uniqueQualifier": "-6530383413477844928", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DJxz7JDE59LvIfHdOhexRzhWu2k\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:40:33.581Z", + "uniqueQualifier": "-6530383413477844928", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DJxz7JDE59LvIfHdOhexRzhWu2k\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:40:33.581Z", + "uniqueQualifier": "-6530383413477844928", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DJxz7JDE59LvIfHdOhexRzhWu2k\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T20:27:18.951Z", + "uniqueQualifier": "-8924270847023180522", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pAyIalrkl_xE0shwLfNNtVybn7I\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AttachmentDeepScanningSettingsProto deep_scanning_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T20:26:13.950Z", + "uniqueQualifier": "-5851204968140537852", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Pa_lNzARuZGAi7TjsZh7kTbfewA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "AttachmentDeepScanningSettingsProto deep_scanning_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T20:21:18.027Z", + "uniqueQualifier": "-5693806913680720351", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/LgWtAwpIUpW4ruUebN-bDTV02HM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T20:20:20.379Z", + "uniqueQualifier": "-9102688400703257081", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bgBfHAbGTvN2j7U5FGmbhbnKfIs\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:39:04.827Z", + "uniqueQualifier": "-5872911294517334101", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0gX_GVAz4HcRZP5ECdZRTbDsxr0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:34:09.372Z", + "uniqueQualifier": "-5971455787616208563", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o8L8cm7u8Zhu_q0LFqAMtsmGzDM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:34:09.372Z", + "uniqueQualifier": "-5971455787616208563", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o8L8cm7u8Zhu_q0LFqAMtsmGzDM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:34:09.372Z", + "uniqueQualifier": "-5971455787616208563", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o8L8cm7u8Zhu_q0LFqAMtsmGzDM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:34:09.372Z", + "uniqueQualifier": "-5971455787616208563", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o8L8cm7u8Zhu_q0LFqAMtsmGzDM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T16:27:46.008Z", + "uniqueQualifier": "-8848929114132654231", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-6dwaguA2VPVo-X2QPHGjZcfh-A\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" + }, + { + "name": "NEW_VALUE", + "value": "[188.150.109.63/24]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T16:17:03.137Z", + "uniqueQualifier": "-7992347785600499742", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5idxVzjGtbHeStWN0K15PtAq6No\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" + }, + { + "name": "NEW_VALUE", + "value": "[188.150.109.63/24]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-10T22:14:36.427Z", + "uniqueQualifier": "-8529049152175194588", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/veGdJdx3GLas_Z6eel7KWHfIWbc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" + }, + { + "name": "NEW_VALUE", + "value": "[188.150.109.63/24]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-09T23:50:07.583Z", + "uniqueQualifier": "-7434000845670004900", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HszCeuS4sdBgisOo6NUiP9-qPRA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" + }, + { + "name": "NEW_VALUE", + "value": "[188.150.109.63]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T15:59:32.459Z", + "uniqueQualifier": "-8733976945830710318", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VxfeI1N_OhS6wTG3_CvZCgYjYLE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" + }, + { + "name": "NEW_VALUE", + "value": "[188.150.109.63]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:36:14.424Z", + "uniqueQualifier": "-7768235018267311352", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bWVTdTV6tgycfGz-F6KYwF3ZDOQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "AttachmentDeepScanningSettingsProto deep_scanning_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:34:20.495Z", + "uniqueQualifier": "-5928946132581627170", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Htrqp_RxacOSnH1qctWUgDIWHCc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:32:01.828Z", + "uniqueQualifier": "-8657803367078535094", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VrvMhvtTEvKfnYOER1qy7KdFbHY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" + }, + { + "name": "NEW_VALUE", + "value": "[188.150.109.63, 188.150.109.63]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:28:24.350Z", + "uniqueQualifier": "-5693871321633820493", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tdPcINJrcUGs5QdhU5VeUYRI2Qs\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto is_empty" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:23:45.318Z", + "uniqueQualifier": "-5932092697097708568", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/WwJfghaQELpCTF6hAmrsMJmoANY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "OutOfDomainWarningProto disable_untrusted_recipient_warning" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:30:11.878Z", + "uniqueQualifier": "-5403239592848814941", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ONWmGEsY0B_iy4Kd9AhMkM2ly2s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:19:34.544Z", + "uniqueQualifier": "-5869987573009452283", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/AjnYwGZxKdBZARre1Wrg1GAbsdI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:06:42.182Z", + "uniqueQualifier": "-5181161422670486464", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/z-GzvVpdFGm6C6WB8OYK4rLLr7Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:26.817Z", + "uniqueQualifier": "-6838915869810017410", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1YrS6-dLBz7H5uMUHl56-noRDK8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:00:24.497Z", + "uniqueQualifier": "-4822045421791168466", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rYykGcrFPiTNRY34LS5ADNWrGJ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "NEW_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:24:38.659Z", + "uniqueQualifier": "-6280635170250231145", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uP-7yxgOxUtD_VP2Z-w-V0j8UbY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:24:38.659Z", + "uniqueQualifier": "-6280635170250231145", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uP-7yxgOxUtD_VP2Z-w-V0j8UbY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:24:38.659Z", + "uniqueQualifier": "-6280635170250231145", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uP-7yxgOxUtD_VP2Z-w-V0j8UbY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:24:38.659Z", + "uniqueQualifier": "-6280635170250231145", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uP-7yxgOxUtD_VP2Z-w-V0j8UbY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:24:38.659Z", + "uniqueQualifier": "-6280635170250231145", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uP-7yxgOxUtD_VP2Z-w-V0j8UbY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:23:00.783Z", + "uniqueQualifier": "-8410493281186321252", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-txnT5pL5pbl5za9WAYswK5koLM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:23:00.783Z", + "uniqueQualifier": "-8410493281186321252", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-txnT5pL5pbl5za9WAYswK5koLM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:23:00.783Z", + "uniqueQualifier": "-8410493281186321252", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-txnT5pL5pbl5za9WAYswK5koLM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:23:00.783Z", + "uniqueQualifier": "-8410493281186321252", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-txnT5pL5pbl5za9WAYswK5koLM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:23:00.783Z", + "uniqueQualifier": "-8410493281186321252", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-txnT5pL5pbl5za9WAYswK5koLM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:17:03.192Z", + "uniqueQualifier": "-6153425662217819320", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XjNiZ3WYu0Cxu7K6nu3mV81gm8o\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:17:03.192Z", + "uniqueQualifier": "-6153425662217819320", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XjNiZ3WYu0Cxu7K6nu3mV81gm8o\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:17:03.192Z", + "uniqueQualifier": "-6153425662217819320", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XjNiZ3WYu0Cxu7K6nu3mV81gm8o\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:17:03.192Z", + "uniqueQualifier": "-6153425662217819320", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XjNiZ3WYu0Cxu7K6nu3mV81gm8o\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:17:03.192Z", + "uniqueQualifier": "-6153425662217819320", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/XjNiZ3WYu0Cxu7K6nu3mV81gm8o\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:09:10.404Z", + "uniqueQualifier": "-9173648628893265597", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:09:10.404Z", + "uniqueQualifier": "-9173648628893265597", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:09:10.404Z", + "uniqueQualifier": "-9173648628893265597", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:09:10.404Z", + "uniqueQualifier": "-9173648628893265597", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:09:10.404Z", + "uniqueQualifier": "-9173648628893265597", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:09:10.404Z", + "uniqueQualifier": "-9173648628893265597", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:09:10.404Z", + "uniqueQualifier": "-9173648628893265597", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:09:10.404Z", + "uniqueQualifier": "-9173648628893265597", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:09:10.404Z", + "uniqueQualifier": "-9173648628893265597", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:09:10.404Z", + "uniqueQualifier": "-9173648628893265597", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:09:10.404Z", + "uniqueQualifier": "-9173648628893265597", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/N-62Gltu9K8KJlOl5TjF8DNk5Ng\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:18.667Z", + "uniqueQualifier": "-4813725012331975988", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:18.667Z", + "uniqueQualifier": "-4813725012331975988", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:18.667Z", + "uniqueQualifier": "-4813725012331975988", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:18.667Z", + "uniqueQualifier": "-4813725012331975988", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:18.667Z", + "uniqueQualifier": "-4813725012331975988", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:18.667Z", + "uniqueQualifier": "-4813725012331975988", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:18.667Z", + "uniqueQualifier": "-4813725012331975988", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:18.667Z", + "uniqueQualifier": "-4813725012331975988", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:18.667Z", + "uniqueQualifier": "-4813725012331975988", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:18.667Z", + "uniqueQualifier": "-4813725012331975988", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:18.667Z", + "uniqueQualifier": "-4813725012331975988", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_BkC09H18ginVX4yrrIBvPvggQQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:05:10.738Z", + "uniqueQualifier": "-5742299448771648899", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:05:10.738Z", + "uniqueQualifier": "-5742299448771648899", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:05:10.738Z", + "uniqueQualifier": "-5742299448771648899", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:05:10.738Z", + "uniqueQualifier": "-5742299448771648899", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:05:10.738Z", + "uniqueQualifier": "-5742299448771648899", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:05:10.738Z", + "uniqueQualifier": "-5742299448771648899", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:05:10.738Z", + "uniqueQualifier": "-5742299448771648899", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:05:10.738Z", + "uniqueQualifier": "-5742299448771648899", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:05:10.738Z", + "uniqueQualifier": "-5742299448771648899", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:05:10.738Z", + "uniqueQualifier": "-5742299448771648899", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:05:10.738Z", + "uniqueQualifier": "-5742299448771648899", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j80i3b4n8HOl1COnn9q6mKXjG3Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:57:17.142Z", + "uniqueQualifier": "-5133325816919867532", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:57:17.142Z", + "uniqueQualifier": "-5133325816919867532", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:57:17.142Z", + "uniqueQualifier": "-5133325816919867532", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:57:17.142Z", + "uniqueQualifier": "-5133325816919867532", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:57:17.142Z", + "uniqueQualifier": "-5133325816919867532", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:57:17.142Z", + "uniqueQualifier": "-5133325816919867532", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:57:17.142Z", + "uniqueQualifier": "-5133325816919867532", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:57:17.142Z", + "uniqueQualifier": "-5133325816919867532", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:57:17.142Z", + "uniqueQualifier": "-5133325816919867532", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:57:17.142Z", + "uniqueQualifier": "-5133325816919867532", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:57:17.142Z", + "uniqueQualifier": "-5133325816919867532", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:57:17.142Z", + "uniqueQualifier": "-5133325816919867532", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BOGr5XX1CQhO8BK2D4nf5GJd4tU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:32:36.160Z", + "uniqueQualifier": "-7984798595345208026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:32:36.160Z", + "uniqueQualifier": "-7984798595345208026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:32:36.160Z", + "uniqueQualifier": "-7984798595345208026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:32:36.160Z", + "uniqueQualifier": "-7984798595345208026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:32:36.160Z", + "uniqueQualifier": "-7984798595345208026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:32:36.160Z", + "uniqueQualifier": "-7984798595345208026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:32:36.160Z", + "uniqueQualifier": "-7984798595345208026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:32:36.160Z", + "uniqueQualifier": "-7984798595345208026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:32:36.160Z", + "uniqueQualifier": "-7984798595345208026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:32:36.160Z", + "uniqueQualifier": "-7984798595345208026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:32:36.160Z", + "uniqueQualifier": "-7984798595345208026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:32:36.160Z", + "uniqueQualifier": "-7984798595345208026", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kivn1155U4vMRL7Bk7Ip3iTPyI0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "NEW_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "NEW_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "NEW_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "NEW_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "NEW_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "NEW_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T16:21:31.290Z", + "uniqueQualifier": "-8832547985086975437", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/H5MRrQL0btJjjO3h629LEuNBypk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" + }, + { + "name": "OLD_VALUE", + "value": "[188.150.109.63/24]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T16:15:43.685Z", + "uniqueQualifier": "-5071910517359774934", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tO4FyB67JHXDFRrxZggtz3j3J0I\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" + }, + { + "name": "OLD_VALUE", + "value": "[188.150.109.63/24]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-09T23:51:29.928Z", + "uniqueQualifier": "-6964519439010196413", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Lv_nNNSvL93aKGJfMC8q_9qDfYk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" + }, + { + "name": "OLD_VALUE", + "value": "[188.150.109.63/24, 188.150.109.63]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T17:38:56.782Z", + "uniqueQualifier": "-5887092291182430158", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/y5pkB6XV24VdtKy8uVlxwt-IR8k\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" + }, + { + "name": "OLD_VALUE", + "value": "[188.150.109.63]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-08T15:48:49.723Z", + "uniqueQualifier": "-9189739910024391630", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yGMkmLKj4hDYPOx6_CDswZ3b5kg\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" + }, + { + "name": "OLD_VALUE", + "value": "[188.150.109.63]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:36:57.469Z", + "uniqueQualifier": "-7892336497755704961", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-cYo4vR079yMQSaXRca-uRIiav4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "AttachmentDeepScanningSettingsProto deep_scanning_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:34:57.946Z", + "uniqueQualifier": "-7034005062571081223", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uwwqKj5qFmJ0j0YxUHLDmZf1hug\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "DelayedDeliverySettingsProto disable_delayed_delivery_for_suspicious_email" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:28:24.350Z", + "uniqueQualifier": "-5693871321633820493", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xQavg5YlFpBPT4NcUn6jHPRAeww\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GmailIpWhitelistSpamFilteringProto ip_whitelist_spam_filtering" + }, + { + "name": "OLD_VALUE", + "value": "[188.150.109.63]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:26:08.537Z", + "uniqueQualifier": "-9031234566324114665", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UooY5c0mr93sI3LkOCBRYYrAIyo\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "OutOfDomainWarningProto disable_untrusted_recipient_warning" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:31:17.433Z", + "uniqueQualifier": "-8832271997982293315", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9gT6hI4vPnObhN_GxAhD9JKhZ0s\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:24:31.557Z", + "uniqueQualifier": "-6613641808412772920", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pfwyEwjAKl6XyTxe9UEXw_Wd01Q\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:07:42.373Z", + "uniqueQualifier": "-8542032566009871716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QVzeJ-ox7lyl1h_xdab8812VOm8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:34.116Z", + "uniqueQualifier": "-8012812558324558989", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/l755Q7lKz4AwhV8H-mIejtsEDxE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:02:21.926Z", + "uniqueQualifier": "-5077751536906355112", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2jLfAKQPWhr1ByxI0zmApi4BSh4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against domain spoofing using similar domain names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing domain" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against spoofing of employee names action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect your Groups from inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against inbound emails spoofing your domain" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against any unauthenticated emails action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against domain spoofing based on similar domain names action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against any unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for groups spoofing" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails spoofing employee names" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain - group type" + }, + { + "name": "OLD_VALUE", + "value": "All groups" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for emails from visually similar domains" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Quarantine for unauthenticated emails" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect your Groups from inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Enable: protect against spoofing of employee names" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Spoofing and authentication safety Protect against inbound emails spoofing your domain action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:23:42.525Z", + "uniqueQualifier": "-5846774223510872756", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kvUEgXIDgdX0G3k3fX3CXZO50YI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:23:42.525Z", + "uniqueQualifier": "-5846774223510872756", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kvUEgXIDgdX0G3k3fX3CXZO50YI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:23:42.525Z", + "uniqueQualifier": "-5846774223510872756", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kvUEgXIDgdX0G3k3fX3CXZO50YI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:23:42.525Z", + "uniqueQualifier": "-5846774223510872756", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kvUEgXIDgdX0G3k3fX3CXZO50YI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:23:42.525Z", + "uniqueQualifier": "-5846774223510872756", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kvUEgXIDgdX0G3k3fX3CXZO50YI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:18:10.708Z", + "uniqueQualifier": "-7551979130158269815", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FbFoO6oTRMLu-P2AHD05ODvfTYM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:18:10.708Z", + "uniqueQualifier": "-7551979130158269815", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FbFoO6oTRMLu-P2AHD05ODvfTYM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:18:10.708Z", + "uniqueQualifier": "-7551979130158269815", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FbFoO6oTRMLu-P2AHD05ODvfTYM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:18:10.708Z", + "uniqueQualifier": "-7551979130158269815", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FbFoO6oTRMLu-P2AHD05ODvfTYM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:18:10.708Z", + "uniqueQualifier": "-7551979130158269815", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FbFoO6oTRMLu-P2AHD05ODvfTYM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: show warning prompt for click on links to unstrusted domains" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: identify links behind shortened URLs" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety Enable: scan linked images" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Timothy Garcia" + }, + { + "name": "SETTING_NAME", + "value": "Links and external images safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:12:51.227Z", + "uniqueQualifier": "-4787412021313868268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:12:51.227Z", + "uniqueQualifier": "-4787412021313868268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:12:51.227Z", + "uniqueQualifier": "-4787412021313868268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:12:51.227Z", + "uniqueQualifier": "-4787412021313868268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:12:51.227Z", + "uniqueQualifier": "-4787412021313868268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:12:51.227Z", + "uniqueQualifier": "-4787412021313868268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:12:51.227Z", + "uniqueQualifier": "-4787412021313868268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:12:51.227Z", + "uniqueQualifier": "-4787412021313868268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:12:51.227Z", + "uniqueQualifier": "-4787412021313868268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:12:51.227Z", + "uniqueQualifier": "-4787412021313868268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:12:51.227Z", + "uniqueQualifier": "-4787412021313868268", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mYzThAI6uHRLuTJlo7NGWP4ghLA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:08:47.280Z", + "uniqueQualifier": "-8090481736071998183", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:08:47.280Z", + "uniqueQualifier": "-8090481736071998183", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:08:47.280Z", + "uniqueQualifier": "-8090481736071998183", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:08:47.280Z", + "uniqueQualifier": "-8090481736071998183", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:08:47.280Z", + "uniqueQualifier": "-8090481736071998183", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:08:47.280Z", + "uniqueQualifier": "-8090481736071998183", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:08:47.280Z", + "uniqueQualifier": "-8090481736071998183", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:08:47.280Z", + "uniqueQualifier": "-8090481736071998183", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:08:47.280Z", + "uniqueQualifier": "-8090481736071998183", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:08:47.280Z", + "uniqueQualifier": "-8090481736071998183", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:08:47.280Z", + "uniqueQualifier": "-8090481736071998183", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nBMUJPMF9-G6XUS_gbsR7V5xwP8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:07.787Z", + "uniqueQualifier": "-8423564239481711633", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:07.787Z", + "uniqueQualifier": "-8423564239481711633", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:07.787Z", + "uniqueQualifier": "-8423564239481711633", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:07.787Z", + "uniqueQualifier": "-8423564239481711633", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:07.787Z", + "uniqueQualifier": "-8423564239481711633", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:07.787Z", + "uniqueQualifier": "-8423564239481711633", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:07.787Z", + "uniqueQualifier": "-8423564239481711633", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:07.787Z", + "uniqueQualifier": "-8423564239481711633", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:07.787Z", + "uniqueQualifier": "-8423564239481711633", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:07.787Z", + "uniqueQualifier": "-8423564239481711633", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:06:07.787Z", + "uniqueQualifier": "-8423564239481711633", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EKqWD-AGVe0P496eOCAqqjiQ-qk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:03:44.593Z", + "uniqueQualifier": "-8919713994614076952", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:03:44.593Z", + "uniqueQualifier": "-8919713994614076952", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:03:44.593Z", + "uniqueQualifier": "-8919713994614076952", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:03:44.593Z", + "uniqueQualifier": "-8919713994614076952", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:03:44.593Z", + "uniqueQualifier": "-8919713994614076952", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:03:44.593Z", + "uniqueQualifier": "-8919713994614076952", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:03:44.593Z", + "uniqueQualifier": "-8919713994614076952", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:03:44.593Z", + "uniqueQualifier": "-8919713994614076952", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:03:44.593Z", + "uniqueQualifier": "-8919713994614076952", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:03:44.593Z", + "uniqueQualifier": "-8919713994614076952", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:03:44.593Z", + "uniqueQualifier": "-8919713994614076952", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T20:03:44.593Z", + "uniqueQualifier": "-8919713994614076952", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/37tv-E9y5AOvlJTJk-8Mc-B_hnc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-18T19:11:53.488Z", + "uniqueQualifier": "-6196200878245814300", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tK39Q84YGM4xVU87Of2oTou5xjw\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:43:44.637Z", + "uniqueQualifier": "-4899672193862172621", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:43:44.637Z", + "uniqueQualifier": "-4899672193862172621", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:43:44.637Z", + "uniqueQualifier": "-4899672193862172621", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:43:44.637Z", + "uniqueQualifier": "-4899672193862172621", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:43:44.637Z", + "uniqueQualifier": "-4899672193862172621", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:43:44.637Z", + "uniqueQualifier": "-4899672193862172621", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:43:44.637Z", + "uniqueQualifier": "-4899672193862172621", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:43:44.637Z", + "uniqueQualifier": "-4899672193862172621", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:43:44.637Z", + "uniqueQualifier": "-4899672193862172621", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:43:44.637Z", + "uniqueQualifier": "-4899672193862172621", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:43:44.637Z", + "uniqueQualifier": "-4899672193862172621", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:43:44.637Z", + "uniqueQualifier": "-4899672193862172621", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1X6i9zju4xNzWclBtVmpGviN-vM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Encrypted attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Show warning" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection file type whitelist" + }, + { + "name": "OLD_VALUE", + "value": "[txt]" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Anomalous attachment protection setting action" + }, + { + "name": "OLD_VALUE", + "value": "Quarantine" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety" + }, + { + "name": "OLD_VALUE", + "value": "Custom settings" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against encrypted attachments from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: automatically enables all future added settings" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Attachment with scripts protection action" + }, + { + "name": "OLD_VALUE", + "value": "Move to spam" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for encrypted attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: Protect against anomalous attachment types in emails" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for script attachments" + }, + { + "name": "OLD_VALUE", + "value": "0" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Quarantine queue for anomalous attachments" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Gmail" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "SETTING_NAME", + "value": "Attachment safety Enable: protect against attachments with scripts from untrusted senders" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:53:37.510Z", + "uniqueQualifier": "-5220258981000260472", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/igW5PrINzokKRuUKapl4zALy4QE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_GMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "INBOUND_GATEWAY" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "USER_DEFINED_SETTING_NAME", + "value": "11d32" + }, + { + "name": "SETTING_ENABLED", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:52:21.291Z", + "uniqueQualifier": "-8057593944295039120", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/xP4x1uLugnonQK-0f0Lm677XHf0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_GMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "INBOUND_GATEWAY" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "USER_DEFINED_SETTING_NAME", + "value": "11d32" + }, + { + "name": "SETTING_ENABLED", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-05T18:07:58.835Z", + "uniqueQualifier": "-5677155215552662624", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FMpkgZtD1_fsNMzUUyCs5FNj9ng\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_GMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SPAM_CONTROL" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_DESCRIPTION", + "value": "Scuba" + }, + { + "name": "USER_DEFINED_SETTING_NAME", + "value": "6776f" + }, + { + "name": "SETTING_ENABLED", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-05T18:07:08.941Z", + "uniqueQualifier": "-8381009703493294910", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0Yky1P_hl-ymKAitZzOjSZ157aw\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_GMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SPAM_CONTROL" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_DESCRIPTION", + "value": "Scuba" + }, + { + "name": "USER_DEFINED_SETTING_NAME", + "value": "6776f" + }, + { + "name": "SETTING_ENABLED", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-25T17:45:42.903Z", + "uniqueQualifier": "-6801877499305129563", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/L7IzY9CpEI6juacCkaOaPY8jdiY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_GMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "APPROVED_ADDRESS_LIST" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "USER_DEFINED_SETTING_NAME", + "value": "592cd" + }, + { + "name": "SETTING_ENABLED", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-25T17:44:02.082Z", + "uniqueQualifier": "-8747745826320916745", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mOU8c_xGxH9htqIsPfy-5Ur75fA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_GMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SPAM_CONTROL" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_DESCRIPTION", + "value": "Scuba" + }, + { + "name": "USER_DEFINED_SETTING_NAME", + "value": "6776f" + }, + { + "name": "SETTING_ENABLED", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-25T17:42:42.268Z", + "uniqueQualifier": "-7623596039614384795", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/MawPZzruOE_b28Gs9RAW-lFvlkg\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_GMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "SPAM_CONTROL" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_DESCRIPTION", + "value": "Scuba" + }, + { + "name": "USER_DEFINED_SETTING_NAME", + "value": "6776f" + }, + { + "name": "SETTING_ENABLED", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:40:22.466Z", + "uniqueQualifier": "-5545835530076996096", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-RU5zX0wj1hUVMaTDAHrsJxKKt8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_G_SUITE_MARKETPLACE" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "NEW_VALUE", + "value": "3" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:40:14.386Z", + "uniqueQualifier": "-8158670660801576108", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hvkO_0ypO_d2Q_HJi_GPksGKXcg\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_G_SUITE_MARKETPLACE" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "3" + }, + { + "name": "NEW_VALUE", + "value": "2" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:39:14.005Z", + "uniqueQualifier": "-8290323648275442656", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3ioFa-cf1Scs6Ne04RrOOR2iyTQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_G_SUITE_MARKETPLACE" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "2" + }, + { + "name": "NEW_VALUE", + "value": "3" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T23:37:05.652Z", + "uniqueQualifier": "-8762093103530882777", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/L0uSIRCSmyKmXupz6f3sMnnm4Dc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_G_SUITE_MARKETPLACE" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "3" + }, + { + "name": "NEW_VALUE", + "value": "2" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:13:22.480Z", + "uniqueQualifier": "-5462590824006163669", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1ebrZNWrUd4GsBcdb9XrnzuHiTk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "OUTBOUND_RELAY_ENABLED" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:12:39.351Z", + "uniqueQualifier": "-6879918250539439087", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HgK70wJSw5BRdeUFWkTskXAfd60\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "OUTBOUND_RELAY_ENABLED" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:11:57.723Z", + "uniqueQualifier": "-5535752482349833986", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ijN1iEmXEmVRG811PkSOH0LPM4E\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "OUTBOUND_RELAY_ENABLED" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:09:46.603Z", + "uniqueQualifier": "-8095763497910363325", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HZ4jlROHYGDxorJvXsGU-yTy180\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "OUTBOUND_RELAY_ENABLED" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:07:32.707Z", + "uniqueQualifier": "-7232560280648585155", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QAlZq8kxJsp1wNMf5_r9yMw1oQ8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EMAIL_AUTOFORWARDING" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:07:06.701Z", + "uniqueQualifier": "-4639460941160861591", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hgFZhnqQi7TgkQ6cUEQZxwME2yM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EMAIL_AUTOFORWARDING" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T21:06:06.018Z", + "uniqueQualifier": "-5674161863985525771", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cDy0uvfClo2exvgZ-brHzMUWAhY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_OUTLOOK_SYNC" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T20:42:55.513Z", + "uniqueQualifier": "-8619860601033001300", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/F1WXgIPf8Cv4x__d6w6yduNcehQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EMAIL_AUTOFORWARDING" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T20:35:12.291Z", + "uniqueQualifier": "-8939052168772238187", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3wfU9TVHiPdyRG6ds3GF7Otpor0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_OUTLOOK_SYNC" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T20:25:14.299Z", + "uniqueQualifier": "-7612220170230844153", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rF2v9WzbQmnT7Qvg--g-H6ey5HE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_OUTLOOK_SYNC" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T20:19:38.080Z", + "uniqueQualifier": "-5014104996182378615", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hNIP629hKIUS9zjfUBpMImVzAXc\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_OUTLOOK_SYNC" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T20:13:18.536Z", + "uniqueQualifier": "-4759608888648017471", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PhZ5VQgxiFTQPnkk4q0VCeAUiXU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_OUTLOOK_SYNC" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T20:11:18.677Z", + "uniqueQualifier": "-8909905279033106094", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Bvnn5m6G64HlvuiXcyS-w1lbqBI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T20:02:25.525Z", + "uniqueQualifier": "-7992278422230522896", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/V_92ankkjnXO_DOv-rPXRuRYmr4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T20:01:49.493Z", + "uniqueQualifier": "-8109103356776023164", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/MzInKrhJ8Kdka6aMgQir82dp2X4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:57:47.163Z", + "uniqueQualifier": "-8188318268526356168", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/MoGtGI0dHmksak_iUwk0Ms0nWrY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:57:15.582Z", + "uniqueQualifier": "-8651035981142186442", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/IRvyyUXFu7j-vyyFsJyhlfOFTs4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:57:06.666Z", + "uniqueQualifier": "-4728890308066544062", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jPsO2-lSYIEwNSuRz31lrIQoMSQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:55:16.620Z", + "uniqueQualifier": "-6778456187725220486", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-vwT_VOnIy0viMAvjTueuiueHX0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:53:24.896Z", + "uniqueQualifier": "-4985538612795785772", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VtWAScfhZa5u3SUWzmtO1I5EgG8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:52:26.287Z", + "uniqueQualifier": "-6214982117479199256", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ceNwJZ15a1ojYHN1-wGNjNHhlTI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:50:25.649Z", + "uniqueQualifier": "-5083429636578294529", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uavcRp9EqyoyfCHd-iXDit2L_EM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:50:13.042Z", + "uniqueQualifier": "-9096013674984849363", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KnakV9jIJaY5nHxJcr2hcysKNQ4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" + }, + { + "name": "NEW_VALUE", + "value": "DISABLED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:48:07.968Z", + "uniqueQualifier": "-4767306219726251079", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tP9xnEZ7KUJXAUR2bRKKAEkAVh0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" + }, + { + "name": "NEW_VALUE", + "value": "DISABLED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:43:51.742Z", + "uniqueQualifier": "-6540726772729614082", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5gfN-5FxsaSGRkehIJgstgcORa8\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:42:09.377Z", + "uniqueQualifier": "-6158037699155854069", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rqU5rmsnR-NEb1wB680YTP5A0bg\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EMAIL_USER_IMPORT" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:41:14.310Z", + "uniqueQualifier": "-9187610611734390870", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0LQaFABw4F5CEdtTBqi216tBm5I\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EMAIL_USER_IMPORT" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-07T19:40:08.340Z", + "uniqueQualifier": "-5677650715039890159", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mTSpFa_6gvCCASAvdM1cEUK7jgA\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EMAIL_USER_IMPORT" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T18:53:29.850Z", + "uniqueQualifier": "-7588363845181409421", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/R4BHaevFqrJ97k3snK-KKOPw-vM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_SENDER_ATTRIBUTION" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_MAILBOX_GROUP_DELEGATION" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ALLOW_SENDER_ATTRIBUTION_CUSTOMIZATION" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T18:52:59.453Z", + "uniqueQualifier": "-7595358577437419937", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/X-CnaNiIYh_FwC_6XeePb-Kq2LE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T18:52:34.201Z", + "uniqueQualifier": "-7868003009966565743", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/o__0xL0DwOw71IGGY4MWGWsha58\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ALLOW_SENDER_ATTRIBUTION_CUSTOMIZATION" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_SENDER_ATTRIBUTION" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_MAILBOX_GROUP_DELEGATION" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T18:51:58.179Z", + "uniqueQualifier": "-5588391883838532498", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/shu-cPQLHTqnsimO0_muFyd4nnw\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T18:51:04.105Z", + "uniqueQualifier": "-7965382699069746799", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_e0GdviiKTCaUrCfDYpH40JT7ug\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_SENDER_ATTRIBUTION" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_MAILBOX_GROUP_DELEGATION" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ALLOW_SENDER_ATTRIBUTION_CUSTOMIZATION" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T18:50:17.526Z", + "uniqueQualifier": "-5851129210180951102", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/OkfAWCyk-EjHOg_aG-whpIw0ces\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-02T18:49:22.474Z", + "uniqueQualifier": "-4678643818380845153", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ntika7xnxnDsOvA5dHA8f_e1N74\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-16T18:39:20.629Z", + "uniqueQualifier": "-7216214042325487606", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UZnWtd7fC_OA4SquwifJ3RFMFDQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:54:45.666Z", + "uniqueQualifier": "3932197789466149184", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/thkNBS6vEaom_GnV2vc6isXWoqE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "RETENTION_POLICY" + }, + { + "name": "OLD_VALUE", + "value": "DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "ENABLED" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T18:54:36.203Z", + "uniqueQualifier": "-6203442127950220345", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Kxqf9kIThsEEXt0Q56-Jh9lF3EI\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "RETENTION_POLICY" + }, + { + "name": "OLD_VALUE", + "value": "ENABLED" + }, + { + "name": "NEW_VALUE", + "value": "DISABLED" + }, + { + "name": "DOMAIN_NAME", + "value": "example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-10T16:21:52.214Z", + "uniqueQualifier": "-6014367350232484216", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2M3TAzz2AlCRmYUewwei65sko6c\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" + }, + { + "name": "NEW_VALUE", + "value": "DISABLED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-30T21:53:41.301Z", + "uniqueQualifier": "-5816693748781146108", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/a6D0n5piJguhJpAQtrAmGOwNdw0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-30T21:48:28.729Z", + "uniqueQualifier": "-5299536692910296933", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cQJoqL0HGchUhLQEddJhmuHjUxY\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-30T21:48:21.195Z", + "uniqueQualifier": "-7225735303026835043", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9toIZDz0ZfInhtqrARrJyrsbURE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "DISABLED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-30T21:46:53.368Z", + "uniqueQualifier": "-8679081967770796097", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/U0e0pW9wkLzVED5uoPFT33Dcemg\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "DISABLED" + }, + { + "name": "NEW_VALUE", + "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T23:52:44.740Z", + "uniqueQualifier": "-7637827464269962062", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zhIZL8bhbZJ_eH75-bdZzLI1iDE\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EMAIL_AUTOFORWARDING" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T23:17:01.501Z", + "uniqueQualifier": "-9006670395198114015", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Xc5feahHkmN5GtGxt5nABssgnH4\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "DISABLED" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T23:15:31.149Z", + "uniqueQualifier": "-6017357394151553113", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5e-RmtjF-VaI0umq8r54lyz4Q-o\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_OUTLOOK_SYNC" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T22:51:58.904Z", + "uniqueQualifier": "-6872050504957565716", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/0bRHbrw6DqiEeeDF5BkcfV9M7qU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T22:50:37.133Z", + "uniqueQualifier": "-7786728164357987178", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vzhS3mjPlyIWD8ziCUssI6QBufQ\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" + }, + { + "name": "GROUP_EMAIL", + "value": "wallbenjamin@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T22:49:12.857Z", + "uniqueQualifier": "-7724567653635556035", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1kPbEUuzwiHIaReh8_E4qW9FPfM\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_POP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "IMAP_ACCESS" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "ENABLED_FOR_ALL_MAIL_CLIENTS" + }, + { + "name": "NEW_VALUE", + "value": "DISABLED" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-29T17:59:15.519Z", + "uniqueQualifier": "-6999163503709316415", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/kefRiH9z0q9qNBFar6R3cishdBw\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:46:52.557Z", + "uniqueQualifier": "-4990251964110501579", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ujidckrstraPhOCfpBEc_fYozN0\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EMAIL_USER_IMPORT" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:46:13.932Z", + "uniqueQualifier": "-6095943839510973279", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1aFsFW7bJK-h6e-t2fYLKFx_gYU\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_EMAIL_USER_IMPORT" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:30:29.227Z", + "uniqueQualifier": "-8879909675184632860", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HH3pHlD4LTvCxliYTDkONYE3x3c\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_MAILBOX_GROUP_DELEGATION" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ALLOW_SENDER_ATTRIBUTION_CUSTOMIZATION" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_SENDER_ATTRIBUTION" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + }, + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Diane Ellis" + }, + { + "name": "OLD_VALUE", + "value": "INHERIT_FROM_PARENT" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-10T19:28:31.506Z", + "uniqueQualifier": "-6339158507640117533", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/05bGW4K8uT81iEtEJxoHYiV9Wmk\"", + "actor": { + "callerType": "USER", + "email": "wallbenjamin@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "188.150.109.63", + "events": [ + { + "type": "EMAIL_SETTINGS", + "name": "CHANGE_EMAIL_SETTING", + "parameters": [ + { + "name": "SETTING_NAME", + "value": "ENABLE_MAIL_DELEGATION_WITHIN_DOMAIN" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + } + ] + }, + "groups_logs": { + "items": [ + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:37:43.283Z", + "uniqueQualifier": "-4904438979277015128", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tkBcuXoI_8FrPuNObVlc4WNEYjE\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:37:43.283Z", + "uniqueQualifier": "-4904438979277015128", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tkBcuXoI_8FrPuNObVlc4WNEYjE\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:36:21.891Z", + "uniqueQualifier": "-8669371008482495405", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/v7X1t6hr1F05H8D4HzS4XACaveE\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:36:21.891Z", + "uniqueQualifier": "-8669371008482495405", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/v7X1t6hr1F05H8D4HzS4XACaveE\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:36:13.768Z", + "uniqueQualifier": "-7866552149204692863", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mU1QoC4g18B9IrJ61FmRh2zMgI0\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:36:13.768Z", + "uniqueQualifier": "-7866552149204692863", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mU1QoC4g18B9IrJ61FmRh2zMgI0\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:36:13.768Z", + "uniqueQualifier": "-7866552149204692863", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mU1QoC4g18B9IrJ61FmRh2zMgI0\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:36:13.768Z", + "uniqueQualifier": "-7866552149204692863", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mU1QoC4g18B9IrJ61FmRh2zMgI0\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:33:48.949Z", + "uniqueQualifier": "-5496101249954155620", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KSL9g8i-ALnsOtTnptFw4BndVjY\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "OWNERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "OWNERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:33:48.949Z", + "uniqueQualifier": "-5496101249954155620", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KSL9g8i-ALnsOtTnptFw4BndVjY\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "OWNERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "OWNERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:33:48.949Z", + "uniqueQualifier": "-5496101249954155620", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KSL9g8i-ALnsOtTnptFw4BndVjY\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "OWNERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "OWNERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:33:48.949Z", + "uniqueQualifier": "-5496101249954155620", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KSL9g8i-ALnsOtTnptFw4BndVjY\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "OWNERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "OWNERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:33:04.557Z", + "uniqueQualifier": "-5504555202671295586", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/L-1ejPhsvHDfZbO3cn9Gy5TyBxg\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "OWNERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "OWNERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:33:04.557Z", + "uniqueQualifier": "-5504555202671295586", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/L-1ejPhsvHDfZbO3cn9Gy5TyBxg\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "OWNERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "OWNERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:32:01.559Z", + "uniqueQualifier": "-4907656681345959991", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DiaJEshjdRsODihbU6Hx1-Hg1WA\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MANAGERS" + }, + { + "name": "NEW_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MANAGERS" + }, + { + "name": "NEW_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:32:01.559Z", + "uniqueQualifier": "-4907656681345959991", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DiaJEshjdRsODihbU6Hx1-Hg1WA\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MANAGERS" + }, + { + "name": "NEW_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MANAGERS" + }, + { + "name": "NEW_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:24:14.686Z", + "uniqueQualifier": "-9112802051723476293", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gi8_7lWDkJX8gncvBg3z6f4-xSA\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:24:14.686Z", + "uniqueQualifier": "-9112802051723476293", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gi8_7lWDkJX8gncvBg3z6f4-xSA\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:23:34.595Z", + "uniqueQualifier": "-8267341555213866055", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/sRyytbYo3mUlrp_u3m_21-o1BaM\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto who_can_create_groups" + }, + { + "name": "OLD_VALUE", + "value": "USERS_IN_DOMAIN" + }, + { + "name": "NEW_VALUE", + "value": "WORLD" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto who_can_create_groups" + }, + { + "name": "OLD_VALUE", + "value": "USERS_IN_DOMAIN" + }, + { + "name": "NEW_VALUE", + "value": "WORLD" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:23:34.595Z", + "uniqueQualifier": "-8267341555213866055", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/sRyytbYo3mUlrp_u3m_21-o1BaM\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto who_can_create_groups" + }, + { + "name": "OLD_VALUE", + "value": "USERS_IN_DOMAIN" + }, + { + "name": "NEW_VALUE", + "value": "WORLD" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto who_can_create_groups" + }, + { + "name": "OLD_VALUE", + "value": "USERS_IN_DOMAIN" + }, + { + "name": "NEW_VALUE", + "value": "WORLD" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:23:34.595Z", + "uniqueQualifier": "-8267341555213866055", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/sRyytbYo3mUlrp_u3m_21-o1BaM\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto who_can_create_groups" + }, + { + "name": "OLD_VALUE", + "value": "USERS_IN_DOMAIN" + }, + { + "name": "NEW_VALUE", + "value": "WORLD" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto who_can_create_groups" + }, + { + "name": "OLD_VALUE", + "value": "USERS_IN_DOMAIN" + }, + { + "name": "NEW_VALUE", + "value": "WORLD" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:23:34.595Z", + "uniqueQualifier": "-8267341555213866055", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/sRyytbYo3mUlrp_u3m_21-o1BaM\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto who_can_create_groups" + }, + { + "name": "OLD_VALUE", + "value": "USERS_IN_DOMAIN" + }, + { + "name": "NEW_VALUE", + "value": "WORLD" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto who_can_create_groups" + }, + { + "name": "OLD_VALUE", + "value": "USERS_IN_DOMAIN" + }, + { + "name": "NEW_VALUE", + "value": "WORLD" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:22:57.150Z", + "uniqueQualifier": "-6234921438137055089", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_owIByGF2s3-5o33gHtjTqazZN4\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:22:57.150Z", + "uniqueQualifier": "-6234921438137055089", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_owIByGF2s3-5o33gHtjTqazZN4\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:22:43.993Z", + "uniqueQualifier": "-6966308199380559657", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_SdirAbxAbmefcrqBvbo0j5B0QY\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto who_can_create_groups" + }, + { + "name": "OLD_VALUE", + "value": "ADMIN_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "USERS_IN_DOMAIN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto who_can_create_groups" + }, + { + "name": "OLD_VALUE", + "value": "ADMIN_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "USERS_IN_DOMAIN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:22:43.993Z", + "uniqueQualifier": "-6966308199380559657", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/_SdirAbxAbmefcrqBvbo0j5B0QY\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto who_can_create_groups" + }, + { + "name": "OLD_VALUE", + "value": "ADMIN_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "USERS_IN_DOMAIN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto who_can_create_groups" + }, + { + "name": "OLD_VALUE", + "value": "ADMIN_ONLY" + }, + { + "name": "NEW_VALUE", + "value": "USERS_IN_DOMAIN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:17:19.606Z", + "uniqueQualifier": "-8418685703927066318", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CYQ8e0XNXiHPw5LGQrHxOhJmj1s\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_external_members" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_external_members" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:17:19.606Z", + "uniqueQualifier": "-8418685703927066318", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CYQ8e0XNXiHPw5LGQrHxOhJmj1s\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_external_members" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_external_members" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:17:19.606Z", + "uniqueQualifier": "-8418685703927066318", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CYQ8e0XNXiHPw5LGQrHxOhJmj1s\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_external_members" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_external_members" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:17:19.606Z", + "uniqueQualifier": "-8418685703927066318", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CYQ8e0XNXiHPw5LGQrHxOhJmj1s\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_external_members" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_external_members" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_incoming_mail_from_public" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:14:52.502Z", + "uniqueQualifier": "-7520287385961964835", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ao7lzw1HWgLUm02zdOzhbJFGwA0\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_external_members" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_external_members" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:14:52.502Z", + "uniqueQualifier": "-7520287385961964835", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ao7lzw1HWgLUm02zdOzhbJFGwA0\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_external_members" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto owners_can_allow_external_members" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:13:50.444Z", + "uniqueQualifier": "-8965504840731817885", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oDKYAFASQ9Tk4Ws92_UERXix82o\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:13:50.444Z", + "uniqueQualifier": "-8965504840731817885", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oDKYAFASQ9Tk4Ws92_UERXix82o\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:13:15.242Z", + "uniqueQualifier": "-4672168368876777939", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Y_BjsqXMtGEpWc4ydzlaxwZmwFw\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T20:13:15.242Z", + "uniqueQualifier": "-4672168368876777939", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Y_BjsqXMtGEpWc4ydzlaxwZmwFw\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-05T19:14:37.336Z", + "uniqueQualifier": "-6449288065435827893", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/M8gWt5mC9nXz_hgEPC0rnuB62Qs\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-05T19:14:37.336Z", + "uniqueQualifier": "-6449288065435827893", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/M8gWt5mC9nXz_hgEPC0rnuB62Qs\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-05T19:13:24.534Z", + "uniqueQualifier": "-7856870949104581356", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TLCgMxU1BiC3toIPLrSzxr4HKpM\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-05T19:13:24.534Z", + "uniqueQualifier": "-7856870949104581356", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TLCgMxU1BiC3toIPLrSzxr4HKpM\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T21:18:04.853Z", + "uniqueQualifier": "-7111684680849442804", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/klHLmbdd3q4Mu8qThSzQiFou4J0\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T21:18:04.853Z", + "uniqueQualifier": "-7111684680849442804", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/klHLmbdd3q4Mu8qThSzQiFou4J0\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:57:06.843Z", + "uniqueQualifier": "-6204715428815412139", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBg7rUzPpTqQhQVVLWVOCdeholM\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MEMBERS" + }, + { + "name": "NEW_VALUE", + "value": "MANAGERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MEMBERS" + }, + { + "name": "NEW_VALUE", + "value": "MANAGERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:57:06.843Z", + "uniqueQualifier": "-6204715428815412139", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/aBg7rUzPpTqQhQVVLWVOCdeholM\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MEMBERS" + }, + { + "name": "NEW_VALUE", + "value": "MANAGERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MEMBERS" + }, + { + "name": "NEW_VALUE", + "value": "MANAGERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:53:06.323Z", + "uniqueQualifier": "-7763452661463152583", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6oJ1Ah7snzrcYmffdkAnNialNJs\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:53:06.323Z", + "uniqueQualifier": "-7763452661463152583", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6oJ1Ah7snzrcYmffdkAnNialNJs\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:53:06.323Z", + "uniqueQualifier": "-7763452661463152583", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6oJ1Ah7snzrcYmffdkAnNialNJs\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:53:06.323Z", + "uniqueQualifier": "-7763452661463152583", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6oJ1Ah7snzrcYmffdkAnNialNJs\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "PUBLIC" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:51:50.405Z", + "uniqueQualifier": "-5036186245106370921", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2qExsKxdtz5TOj6D2WJgmbmt434\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:51:50.405Z", + "uniqueQualifier": "-5036186245106370921", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2qExsKxdtz5TOj6D2WJgmbmt434\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:51:50.405Z", + "uniqueQualifier": "-5036186245106370921", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2qExsKxdtz5TOj6D2WJgmbmt434\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:51:50.405Z", + "uniqueQualifier": "-5036186245106370921", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2qExsKxdtz5TOj6D2WJgmbmt434\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "PUBLIC" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:50:43.473Z", + "uniqueQualifier": "-7117354763329458436", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pM21caWQuJXA2mw7cr8i719Y-jk\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MANAGERS" + }, + { + "name": "NEW_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MANAGERS" + }, + { + "name": "NEW_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:50:43.473Z", + "uniqueQualifier": "-7117354763329458436", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pM21caWQuJXA2mw7cr8i719Y-jk\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MANAGERS" + }, + { + "name": "NEW_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MANAGERS" + }, + { + "name": "NEW_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:48:59.908Z", + "uniqueQualifier": "-6323665838879164080", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9I3NWDAdKDwVpyKlVUID9TvPvEg\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "OWNERS" + }, + { + "name": "NEW_VALUE", + "value": "MANAGERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "OWNERS" + }, + { + "name": "NEW_VALUE", + "value": "MANAGERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:48:59.908Z", + "uniqueQualifier": "-6323665838879164080", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9I3NWDAdKDwVpyKlVUID9TvPvEg\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "OWNERS" + }, + { + "name": "NEW_VALUE", + "value": "MANAGERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "OWNERS" + }, + { + "name": "NEW_VALUE", + "value": "MANAGERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:47:39.816Z", + "uniqueQualifier": "-7036518029279799858", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/v6phs8UNzfp56wW812X2zfBW2To\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MEMBERS" + }, + { + "name": "NEW_VALUE", + "value": "OWNERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MEMBERS" + }, + { + "name": "NEW_VALUE", + "value": "OWNERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:47:39.816Z", + "uniqueQualifier": "-7036518029279799858", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/v6phs8UNzfp56wW812X2zfBW2To\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MEMBERS" + }, + { + "name": "NEW_VALUE", + "value": "OWNERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "MEMBERS" + }, + { + "name": "NEW_VALUE", + "value": "OWNERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:41:09.333Z", + "uniqueQualifier": "-4735955040041761964", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/q7dOw72qMc9l6ID3NRN7IYQfVg0\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:41:09.333Z", + "uniqueQualifier": "-4735955040041761964", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/q7dOw72qMc9l6ID3NRN7IYQfVg0\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto default_view_topics_access_level" + }, + { + "name": "OLD_VALUE", + "value": "DOMAIN_USERS" + }, + { + "name": "NEW_VALUE", + "value": "MEMBERS" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:34:18.664Z", + "uniqueQualifier": "-5256001228217440553", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/138uItmVSuSBL1H3W0ByCWo1bio\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:34:18.664Z", + "uniqueQualifier": "-5256001228217440553", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/138uItmVSuSBL1H3W0ByCWo1bio\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "OPEN" + }, + { + "name": "NEW_VALUE", + "value": "CLOSED" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:33:18.234Z", + "uniqueQualifier": "-8428811444455467452", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mhfOtxltCJLhxN1G2GaNez2C4Ys\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:33:18.234Z", + "uniqueQualifier": "-8428811444455467452", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mhfOtxltCJLhxN1G2GaNez2C4Ys\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto collaboration_policy" + }, + { + "name": "OLD_VALUE", + "value": "CLOSED" + }, + { + "name": "NEW_VALUE", + "value": "OPEN" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:26:27.149Z", + "uniqueQualifier": "-4822096225956778257", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j4CaP-hzD53IQAsrAJfw5q6YBA0\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:26:27.149Z", + "uniqueQualifier": "-4822096225956778257", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j4CaP-hzD53IQAsrAJfw5q6YBA0\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:24:07.823Z", + "uniqueQualifier": "-6928636887115177485", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TIcLBv69k_7xAwa83NTSWAsBOQs\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T19:24:07.823Z", + "uniqueQualifier": "-6928636887115177485", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/TIcLBv69k_7xAwa83NTSWAsBOQs\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto allow_unlisted_groups" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T18:48:29.488Z", + "uniqueQualifier": "-7671215909739986270", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O3yUrumPOSXEZCVZP8wVVL8yT9c\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto new_groups_are_unlisted" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto new_groups_are_unlisted" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T18:48:29.488Z", + "uniqueQualifier": "-7671215909739986270", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/O3yUrumPOSXEZCVZP8wVVL8yT9c\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto new_groups_are_unlisted" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto new_groups_are_unlisted" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T18:48:22.266Z", + "uniqueQualifier": "-7964742630930404774", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gjcH0kAv6ssrYTr0PKKuazLnzSI\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto new_groups_are_unlisted" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto new_groups_are_unlisted" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-04-16T18:48:22.266Z", + "uniqueQualifier": "-7964742630930404774", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gjcH0kAv6ssrYTr0PKKuazLnzSI\"", + "actor": { + "callerType": "USER", + "email": "williamsmaria@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "161.20.153.182", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto new_groups_are_unlisted" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "business" + } + ] + }, + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Groups for Business" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "GroupsSharingSettingsProto new_groups_are_unlisted" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "standard" + } + ] + } + ] + } + ] + }, + "meet_logs": { + "items": [ + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:55:37.869Z", + "uniqueQualifier": "-8374287999136728679", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cGjlWrimBqO01CXYx7yAQoxlbHo\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Stephens" + }, + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + { + "name": "OLD_VALUE", + "value": "NO_ONE" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:54:31.145Z", + "uniqueQualifier": "-8104928817540590542", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Mi9R9XxARRQQe_kRMbd4vYpgGp8\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "NEW_VALUE", + "value": "CONTACTS_AND_SAME_DOMAIN" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:53:56.352Z", + "uniqueQualifier": "-6766904102890133338", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/UAf7SsvJ5EDHnVdU_pxtEc4Szz8\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + { + "name": "OLD_VALUE", + "value": "NO_ONE" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:50:32.343Z", + "uniqueQualifier": "-6439791708317553310", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FjFNGKDYtwQRdo9U_LQ9YA4L6xI\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Warn for external participants External or unidentified participants in a meeting are given a label" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:49:48.547Z", + "uniqueQualifier": "-8511607302872145393", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5lRWi7F1LjpOITx926Z0bYaf3Jg\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Warn for external participants External or unidentified participants in a meeting are given a label" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:48:33.149Z", + "uniqueQualifier": "-6835658709060728209", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6Ftv9mxvZlTkdvLWhZrIaQWITYk\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Stephens" + }, + { + "name": "SETTING_NAME", + "value": "SafetyModerationLockProto host_management_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:47:38.236Z", + "uniqueQualifier": "-5118571039915596769", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/oMZ7nJLZCzvyVcFPdFMsb2ZHfJg\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyModerationLockProto host_management_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:47:27.041Z", + "uniqueQualifier": "-8099089512881198832", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ui0Jxxq9YUHVdIwvYomTwzwXWzM\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Stephens" + }, + { + "name": "SETTING_NAME", + "value": "SafetyModerationLockProto host_management_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:45:06.644Z", + "uniqueQualifier": "-6856778993139090964", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Eqw7rKUcZt0iu8jilL0tV7dCAqk\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyAccessLockProto meetings_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "SAME_DOMAIN" + }, + { + "name": "NEW_VALUE", + "value": "WORKSPACE_DOMAINS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:45:00.591Z", + "uniqueQualifier": "-5366605936444943748", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/6DxtZMv5s-zxp1w7OvgLhd7oeRo\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyAccessLockProto meetings_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "NEW_VALUE", + "value": "SAME_DOMAIN" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:44:20.793Z", + "uniqueQualifier": "-7777319459911597339", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/59rqvaXBEfsoVTxbowoBIub5uYw\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyAccessLockProto meetings_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "WORKSPACE_DOMAINS" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:43:40.195Z", + "uniqueQualifier": "-6089323717336756141", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/MO5dSMk6xwm_Q_WmxVEDD-ZdPKs\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyAccessLockProto meetings_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "NEW_VALUE", + "value": "WORKSPACE_DOMAINS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:36:45.489Z", + "uniqueQualifier": "-7298713937355141569", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KiToDsyiOizecMNDZTw5GYWUmFw\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyDomainLockProto users_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "NEW_VALUE", + "value": "SAME_DOMAIN" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:36:10.824Z", + "uniqueQualifier": "-6203188244941888696", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/elrHYwMfNlA0HiQqSmmriDRIxLw\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyDomainLockProto users_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "LOGGED_IN" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:35:36.891Z", + "uniqueQualifier": "-4614946522497774418", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ZH81r2VYKz6Nvv7s1bCJ1CqSH9Q\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyDomainLockProto users_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "NEW_VALUE", + "value": "LOGGED_IN" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-25T01:18:15.188Z", + "uniqueQualifier": "-7916226346238711538", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gQHTGOFKONu2BI79olPvZx1XA1Y\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyAccessLockProto meetings_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "NEW_VALUE", + "value": "WORKSPACE_DOMAINS" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-25T01:16:06.383Z", + "uniqueQualifier": "-7937568576718507934", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/ByJnzGdQ9tdIv-3pAQ3DQQw2A3Y\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyDomainLockProto users_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "LOGGED_IN" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T13:18:11.170Z", + "uniqueQualifier": "-8250460015944039555", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QrbwI8IJ9SeL_qiwf3nWmnFHu88\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyModerationLockProto host_management_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T13:14:54.350Z", + "uniqueQualifier": "-7285527198788751441", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/pK9UTflV9f1DBCjnyTj4P6FjEGw\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyModerationLockProto host_management_enabled" + }, + { + "name": "OLD_VALUE", + "value": "true" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T13:08:14.004Z", + "uniqueQualifier": "-6597726453327910005", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/km-aD9OJ0Q1LgecAe8H1ARe8qMA\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyAccessLockProto meetings_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "NEW_VALUE", + "value": "SAME_DOMAIN" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T13:05:10.779Z", + "uniqueQualifier": "-5648369683815270870", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/30LzU4kvVXV4jfIazWJ3twUDxdM\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyAccessLockProto meetings_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "SAME_DOMAIN" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T12:36:18.972Z", + "uniqueQualifier": "-8595295552696246609", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NFH56c0BbMcUrB6PtsLGdiA_7z0\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyDomainLockProto users_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "NEW_VALUE", + "value": "LOGGED_IN" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T12:28:12.685Z", + "uniqueQualifier": "-6006807023156133255", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/j45ya0jGUIPcamUu9WVRvz_A90c\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyDomainLockProto users_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "LOGGED_IN" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T12:27:57.249Z", + "uniqueQualifier": "-7746578310967437033", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Xk_Z4WK8L7xB49pW67hQ16ReXz4\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyDomainLockProto users_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "NEW_VALUE", + "value": "LOGGED_IN" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-18T17:04:51.575Z", + "uniqueQualifier": "-4750258269045578274", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jP4h1Hq-POcWrwHIuKOQpzzEivQ\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "NEW_VALUE", + "value": "NO_ONE" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-18T17:03:47.454Z", + "uniqueQualifier": "-8184931754066388108", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/B_hVzRM1ttYp6ux2zcW2EK4YtnQ\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + { + "name": "OLD_VALUE", + "value": "CONTACTS_AND_SAME_DOMAIN" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-18T16:49:53.143Z", + "uniqueQualifier": "-5209246982694999638", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/laP2OUhDXCIn2TymAPHbyCN6dKs\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "NEW_VALUE", + "value": "CONTACTS_AND_SAME_DOMAIN" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-03T14:33:27.308Z", + "uniqueQualifier": "-4991163248443167249", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PBxqeNSGj773JUH9ieqrRA2o9e0\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CHANGE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "RecordingSettingsProto recording_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:55:03.524Z", + "uniqueQualifier": "-5525678875046184068", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/x_oZXF4KYf9upc4wBe0ntFNbyhI\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Stephens" + }, + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + { + "name": "NEW_VALUE", + "value": "NO_ONE" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:51:58.391Z", + "uniqueQualifier": "-6293797606453030970", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/5v7wjNHE8B2B9Fhkj7UBoNab87w\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyModerationLockProto host_management_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:51:03.443Z", + "uniqueQualifier": "-9120831340154170401", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EQxC3TuCiUBHhMA4yaT-MC6Ux4o\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Stephens" + }, + { + "name": "SETTING_NAME", + "value": "Warn for external participants External or unidentified participants in a meeting are given a label" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:47:19.174Z", + "uniqueQualifier": "-4938542069025293008", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JAAuaHoNcSm6vnYXzovie2Ul0UU\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Stephens" + }, + { + "name": "SETTING_NAME", + "value": "SafetyModerationLockProto host_management_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:45:54.795Z", + "uniqueQualifier": "-8333886986700398767", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gIYcpq4qN_CC220XOTu5i8F5Doc\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Stephens" + }, + { + "name": "SETTING_NAME", + "value": "SafetyAccessLockProto meetings_allowed_to_join" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:38:22.685Z", + "uniqueQualifier": "-9149827511358918659", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/JCXFUtB6mvKgCdVDxncLhVU7J6U\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyDomainLockProto users_allowed_to_join" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:37:20.275Z", + "uniqueQualifier": "-7185040730001420179", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/bEAS0fQ_12Vjzm-7fxmx0zxR-tE\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "SafetyDomainLockProto users_allowed_to_join" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-25T01:20:48.803Z", + "uniqueQualifier": "-8392254067149706858", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jnSr6LmPs7F1qYoR3EUDuf6VIM0\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-25T01:20:03.797Z", + "uniqueQualifier": "-7674857818999495582", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/8qLHtkYKiWRwk5LOvYIEJaHXYKs\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Warn for external participants External or unidentified participants in a meeting are given a label" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-25T01:18:51.598Z", + "uniqueQualifier": "-5708074622440254373", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nCS34dmPtisDaUpvta0Qf3g5b5o\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyModerationLockProto host_management_enabled" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-25T01:17:33.971Z", + "uniqueQualifier": "-8224205482712570389", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Y2veBthUfRZsawFrn0_DqNveX-4\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyAccessLockProto meetings_allowed_to_join" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T13:26:15.349Z", + "uniqueQualifier": "-5310138581724770249", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/LEkQSE50XP6VLEeNXMwnsS5WHq8\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Warn for external participants External or unidentified participants in a meeting are given a label" + }, + { + "name": "NEW_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T13:14:12.588Z", + "uniqueQualifier": "-7008317980551322320", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Bw7aB9gqKLHm4jbOxW7ZOBm-RPg\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyModerationLockProto host_management_enabled" + }, + { + "name": "NEW_VALUE", + "value": "true" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T13:05:02.067Z", + "uniqueQualifier": "-8673740825309699055", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Hbki1-rgT6Ndy60w0rLcv9p6eiE\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyAccessLockProto meetings_allowed_to_join" + }, + { + "name": "NEW_VALUE", + "value": "SAME_DOMAIN" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-18T17:18:58.610Z", + "uniqueQualifier": "-8849126657732400123", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/af9iHpiN73b_mlaPvVSu2p3zutY\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyDomainLockProto users_allowed_to_join" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-18T17:06:04.340Z", + "uniqueQualifier": "-7109330685672096015", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zBcPWfof9MpWcmD-8ZuKY85v_pI\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-18T17:05:26.856Z", + "uniqueQualifier": "-5367584374733700161", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/it3O8Nt7G2H2lUgR4rWw60tlhHg\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "CREATE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Stephens" + }, + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + { + "name": "NEW_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:56:58.359Z", + "uniqueQualifier": "-8100966994637955202", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Ul8lwwu9TPSMD0DkiaH1rvmExig\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:56:11.570Z", + "uniqueQualifier": "-9140592026686128278", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KYq_Td0Q4NuRiF5QdJx6JPDDkJg\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Stephens" + }, + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:53:05.471Z", + "uniqueQualifier": "-8299844283929535138", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/C9SCvkq62JNOkd6akurRDLNlggU\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Warn for external participants External or unidentified participants in a meeting are given a label" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:52:24.099Z", + "uniqueQualifier": "-8891102369683469003", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/nJBhqFCDYgeFlVmIN3TT6MbP4rY\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyModerationLockProto host_management_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:51:41.497Z", + "uniqueQualifier": "-7724102773423493751", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/cqltKzaYIPPm3u1jqFRmVeMAEv8\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Stephens" + }, + { + "name": "SETTING_NAME", + "value": "Warn for external participants External or unidentified participants in a meeting are given a label" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:48:45.486Z", + "uniqueQualifier": "-7013893434920142293", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CutCpFqOkcQR1-xdI06mrpeWJNs\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyModerationLockProto host_management_enabled" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:46:18.617Z", + "uniqueQualifier": "-7289903475532555558", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Swm3v4tXzqUWXQadigUiYITIRpU\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Stephens" + }, + { + "name": "SETTING_NAME", + "value": "SafetyAccessLockProto meetings_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:42:35.654Z", + "uniqueQualifier": "-5685969507023220608", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/iTq_sSJqRiwIFYm62wuAghCxN04\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyDomainLockProto users_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T14:37:44.699Z", + "uniqueQualifier": "-9150050450372581903", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/7aro6o2VxGdezb81SViKDe_Xjvs\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SETTING_NAME", + "value": "SafetyDomainLockProto users_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-25T01:16:38.711Z", + "uniqueQualifier": "-5854719055139876158", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HbS8rTBq8AOE1Gj_-RWnk-ncRkE\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "SafetyDomainLockProto users_allowed_to_join" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T13:27:57.624Z", + "uniqueQualifier": "-8576033219745313419", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/VDdgEYUwcxZOl6zX0IvfztZ3C3s\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Warn for external participants External or unidentified participants in a meeting are given a label" + }, + { + "name": "OLD_VALUE", + "value": "false" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-18T17:16:59.457Z", + "uniqueQualifier": "-4723297543966837316", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HSxCTYBt_NUcJtpF5choU0dGgek\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + }, + { + "name": "GROUP_EMAIL", + "value": "allenboyer@example.org" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-18T17:11:13.375Z", + "uniqueQualifier": "-8597404910937715931", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mjwMhvm4V3aKkrKKD2HLTBm1z3Q\"", + "actor": { + "callerType": "USER", + "email": "allenboyer@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "76.160.151.52", + "events": [ + { + "type": "APPLICATION_SETTINGS", + "name": "DELETE_APPLICATION_SETTING", + "parameters": [ + { + "name": "APPLICATION_NAME", + "value": "Google Meet" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Eric Stephens" + }, + { + "name": "SETTING_NAME", + "value": "Incoming call restrictions Allowed caller type" + }, + { + "name": "OLD_VALUE", + "value": "ALL" + }, + { + "name": "APPLICATION_EDITION", + "value": "enterprise" + } + ] + } + ] + } + ] + }, + "rules_logs": { + "items": [ + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:54:45.235Z", + "uniqueQualifier": "3956971810518958651", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/3HYv_7nzSkJTy6G9dcS26FWujEs\"", + "actor": { + "callerType": "USER", + "email": "westdaniel@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "45.241.14.132", + "events": [ + { + "type": "SYSTEM_DEFINED_RULES", + "name": "SYSTEM_DEFINED_RULE_UPDATED", + "parameters": [ + { + "name": "SYSTEM_DEFINED_RULE_NAME", + "value": "New user added" + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", + "value": "Status changed from OFF to ON." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", + "value": "Severity unchanged." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", + "value": "Email notification status unchanged, receivers unchanged." + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:54:39.199Z", + "uniqueQualifier": "7584547128614457324", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/sKYN8_1QIhGVH-_HV1naZEakQHc\"", + "actor": { + "callerType": "USER", + "email": "westdaniel@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "45.241.14.132", + "events": [ + { + "type": "SYSTEM_DEFINED_RULES", + "name": "SYSTEM_DEFINED_RULE_UPDATED", + "parameters": [ + { + "name": "SYSTEM_DEFINED_RULE_NAME", + "value": "New user added" + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", + "value": "Status changed from ON to OFF." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", + "value": "Severity unchanged." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", + "value": "Email notification status unchanged, receivers unchanged." + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:53:59.117Z", + "uniqueQualifier": "-1250275645785002285", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/fLanXmLJNNOuKfwLzQjvzrBNf2c\"", + "actor": { + "callerType": "USER", + "email": "westdaniel@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "45.241.14.132", + "events": [ + { + "type": "SYSTEM_DEFINED_RULES", + "name": "SYSTEM_DEFINED_RULE_UPDATED", + "parameters": [ + { + "name": "SYSTEM_DEFINED_RULE_NAME", + "value": "User's Admin privilege revoked" + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", + "value": "Status changed from OFF to ON." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", + "value": "Severity unchanged." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", + "value": "Email notification status unchanged, receivers unchanged." + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:53:50.610Z", + "uniqueQualifier": "7927042438549362917", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/WB937qQipGjEFJquxFGTxowdTUA\"", + "actor": { + "callerType": "USER", + "email": "westdaniel@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "45.241.14.132", + "events": [ + { + "type": "SYSTEM_DEFINED_RULES", + "name": "SYSTEM_DEFINED_RULE_UPDATED", + "parameters": [ + { + "name": "SYSTEM_DEFINED_RULE_NAME", + "value": "User's Admin privilege revoked" + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", + "value": "Status changed from ON to OFF." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", + "value": "Severity unchanged." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", + "value": "Email notification status unchanged, receivers unchanged." + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:53:34.254Z", + "uniqueQualifier": "-1626866263407183445", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/BG7GZXiq0Itewq-mBi5TOL8v7CA\"", + "actor": { + "callerType": "USER", + "email": "westdaniel@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "45.241.14.132", + "events": [ + { + "type": "SYSTEM_DEFINED_RULES", + "name": "SYSTEM_DEFINED_RULE_UPDATED", + "parameters": [ + { + "name": "SYSTEM_DEFINED_RULE_NAME", + "value": "Suspicious login" + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", + "value": "Status changed from ON to OFF." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", + "value": "Severity unchanged." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", + "value": "Email notification status unchanged, receivers unchanged." + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:53:20.166Z", + "uniqueQualifier": "52166172304592135", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/uaxjyUS2p1sRe9nuOW6yon8AsEw\"", + "actor": { + "callerType": "USER", + "email": "westdaniel@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "45.241.14.132", + "events": [ + { + "type": "SYSTEM_DEFINED_RULES", + "name": "SYSTEM_DEFINED_RULE_UPDATED", + "parameters": [ + { + "name": "SYSTEM_DEFINED_RULE_NAME", + "value": "User granted Admin privilege" + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", + "value": "Status changed from OFF to ON." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", + "value": "Severity unchanged." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", + "value": "Email notification status unchanged, receivers unchanged." + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:53:14.421Z", + "uniqueQualifier": "-4904664504744280262", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yq2m50JMRluGhy9OuPuH-d4RVko\"", + "actor": { + "callerType": "USER", + "email": "westdaniel@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "45.241.14.132", + "events": [ + { + "type": "SYSTEM_DEFINED_RULES", + "name": "SYSTEM_DEFINED_RULE_UPDATED", + "parameters": [ + { + "name": "SYSTEM_DEFINED_RULE_NAME", + "value": "User granted Admin privilege" + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", + "value": "Status changed from ON to OFF." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", + "value": "Severity unchanged." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", + "value": "Email notification status unchanged, receivers unchanged." + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:53:02.567Z", + "uniqueQualifier": "-3122993961818219247", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/yJqZ0R0cv43RVi49A7-_nxaHdhY\"", + "actor": { + "callerType": "USER", + "email": "westdaniel@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "45.241.14.132", + "events": [ + { + "type": "SYSTEM_DEFINED_RULES", + "name": "SYSTEM_DEFINED_RULE_UPDATED", + "parameters": [ + { + "name": "SYSTEM_DEFINED_RULE_NAME", + "value": "User's password changed" + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", + "value": "Status changed from ON to OFF." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", + "value": "Severity unchanged." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", + "value": "Email notification status unchanged, receivers unchanged." + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:50:56.855Z", + "uniqueQualifier": "-2827365250717378087", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/FODN_RALS_eOvqkkysPVFLpY-4Q\"", + "actor": { + "callerType": "USER", + "email": "westdaniel@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "45.241.14.132", + "events": [ + { + "type": "SYSTEM_DEFINED_RULES", + "name": "SYSTEM_DEFINED_RULE_UPDATED", + "parameters": [ + { + "name": "SYSTEM_DEFINED_RULE_NAME", + "value": "User granted Admin privilege" + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", + "value": "Status changed from OFF to ON." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", + "value": "Severity unchanged." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", + "value": "Email notification status unchanged, receivers unchanged." + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-10-11T20:50:51.171Z", + "uniqueQualifier": "5141795198896305035", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/vYL7719HMlFf8aLiJLY2t7owZzo\"", + "actor": { + "callerType": "USER", + "email": "westdaniel@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "45.241.14.132", + "events": [ + { + "type": "SYSTEM_DEFINED_RULES", + "name": "SYSTEM_DEFINED_RULE_UPDATED", + "parameters": [ + { + "name": "SYSTEM_DEFINED_RULE_NAME", + "value": "User granted Admin privilege" + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", + "value": "Status changed from ON to OFF." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", + "value": "Severity unchanged." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", + "value": "Email notification status unchanged, receivers unchanged." + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-25T16:01:11.218Z", + "uniqueQualifier": "7184977982843790688", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/dCl4MiNxazZFb9H4s9b2u_tkV4Q\"", + "actor": { + "callerType": "USER", + "email": "westdaniel@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "45.241.14.132", + "events": [ + { + "type": "SYSTEM_DEFINED_RULES", + "name": "SYSTEM_DEFINED_RULE_UPDATED", + "parameters": [ + { + "name": "SYSTEM_DEFINED_RULE_NAME", + "value": "User granted Admin privilege" + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", + "value": "Status changed from OFF to ON." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", + "value": "Severity unchanged." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", + "value": "Email notification status unchanged, receivers unchanged." + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-25T16:00:06.405Z", + "uniqueQualifier": "7775662809542561286", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/d5rFSRYtyjsBVsX2kOEh1sk_Z2g\"", + "actor": { + "callerType": "USER", + "email": "westdaniel@example.org", + "profileId": "089885993421003892476" + }, + "ipAddress": "45.241.14.132", + "events": [ + { + "type": "SYSTEM_DEFINED_RULES", + "name": "SYSTEM_DEFINED_RULE_UPDATED", + "parameters": [ + { + "name": "SYSTEM_DEFINED_RULE_NAME", + "value": "User granted Admin privilege" + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_STATUS_CHANGE", + "value": "Status changed from ON to OFF." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_SEVERITY_CHANGE", + "value": "Severity unchanged." + }, + { + "name": "SYSTEM_DEFINED_RULE_ACTION_RECEIVERS_CHANGE", + "value": "Email notification status unchanged, receivers unchanged." + } + ] + } + ] + } + ] + }, + "sites_logs": { + "items": [ + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T21:21:06.841Z", + "uniqueQualifier": "-9098195182074921452", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/-fQO1VttB1Obie8i8zS9CKBE21Y\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "GROUP_EMAIL", + "value": "Test Group" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T21:20:46.288Z", + "uniqueQualifier": "8025554506417096733", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zS3HSddvbnPer8u4kCOjHdrrzbg\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "GROUP_EMAIL", + "value": "Test Group" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T21:16:20.189Z", + "uniqueQualifier": "6356283915385824969", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/D1TR1mn2jV4m3nTNDvIwKEw-g_U\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T21:16:01.109Z", + "uniqueQualifier": "7204973669826879617", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/SzCRUx16q6JUq3WFPzNQnvjeRmM\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T21:09:14.177Z", + "uniqueQualifier": "8302313116147020961", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/RNrPvwvGArfJNJh9_prabZiUiZ0\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Rita Taylor DDS" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T21:08:47.434Z", + "uniqueQualifier": "-8749900273598629428", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/PoaNB1Mn23UiFStWmas0q4T5aik\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Rita Taylor DDS" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-13T21:08:23.813Z", + "uniqueQualifier": "-2006657176011927130", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2ZZie_YZHJjeztU_5SjNtcvQ150\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Rita Taylor DDS" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T15:15:04.510Z", + "uniqueQualifier": "-5444758841714443622", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/zd0oHRz1H30sZY8gJ7Ifv1xekxg\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "Early Access Apps" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T15:14:56.923Z", + "uniqueQualifier": "-5957373208334712224", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/gAP9lpj6QvRtP0_bDD_kh972Uuc\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "Early Access Apps" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T15:14:02.942Z", + "uniqueQualifier": "-5708636481598052506", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/CKXjGSesbvWzCU5wOAYKityUEXQ\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "AI Studio" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T15:13:14.451Z", + "uniqueQualifier": "-5236552787674514970", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/QpmFQfW7NRV6UQret9O8gZ_roMA\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "AI Studio" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T15:11:52.275Z", + "uniqueQualifier": "-170769798380779633", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/9GiJqVQHVqWVuVJU-b6q8bZh_zQ\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-09-12T15:09:52.063Z", + "uniqueQualifier": "3839884327329736493", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/d_fbdFvJa_chJfoulpfORJiV0-4\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-29T16:58:53.890Z", + "uniqueQualifier": "7454046695208426259", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/wES7_Ynv5c8CiZyw16LybVDvoUw\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-22T18:20:51.143Z", + "uniqueQualifier": "-7688066320309934110", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/EM38FAFsPQjrzvstCc2wey7T0l0\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "Gemini" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T16:35:34.867Z", + "uniqueQualifier": "-7527263763506654985", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/J6Pbk-QpRmwtf3RNIo3EChrSprw\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-20T15:28:15.108Z", + "uniqueQualifier": "6601077961077712234", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/2O8VGsfETfnfmBqZRaCMnPr89do\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-07T11:43:06.667Z", + "uniqueQualifier": "-7947017718017192057", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DCQPh23OixiPHvct0lsp7J6Ysdc\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "Early Access Apps" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T19:22:55.858Z", + "uniqueQualifier": "-1594877828342837660", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/69OSj6V2mD9_iXaVundnAgzOTF8\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Paula Smith" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "INHERIT_FROM_PARENT" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T19:21:04.795Z", + "uniqueQualifier": "2753106744149837378", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/DVZ60mbnjb0-SaeLEkWknblA_uw\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Paula Smith" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T19:20:59.156Z", + "uniqueQualifier": "6178707512128116339", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/irVhaBwGC1mNiciRkZXYQqWEXjE\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Paula Smith" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T19:19:13.642Z", + "uniqueQualifier": "2808073231402698204", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/Gv6XaiMq_nD6suJkxzSwTJBndQ0\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T19:19:08.164Z", + "uniqueQualifier": "8736007291127896364", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/rkw5mtTUj5MbLbQWOmU45x-BnMw\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T19:08:30.787Z", + "uniqueQualifier": "533218495484865116", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/NYKdZWqDJyEWI93fdecspxR5CoA\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-08-02T18:59:47.601Z", + "uniqueQualifier": "-2453065809836051332", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/tTdKdRnzKNEW_bBoIK9vtnuCscc\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-07-10T13:02:25.716Z", + "uniqueQualifier": "-6733023187686062485", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/1WFFW5dUtAH3Rt4tRlgLzCGaJfs\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "GROUP_EMAIL", + "value": "Test Group" + }, + { + "name": "SERVICE_NAME", + "value": "Google Meet" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-17T13:24:57.067Z", + "uniqueQualifier": "162223212287505661", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/mxrwtdruurEUt_byTOSSap4u8EQ\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-17T13:17:15.082Z", + "uniqueQualifier": "1964753045072657864", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/HTA6cJ12b2oz5I5yyyz1QeBn3is\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Sites OU" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-12T15:24:57.620Z", + "uniqueQualifier": "-689788582864289", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/94Ja39XIYZ62lAFAugruZ-VlHcw\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-06-12T15:19:16.583Z", + "uniqueQualifier": "3590866658306550858", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/hO5E-6ac0TKrbBRUJeRbK9qU80s\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Rita Taylor DDS" + }, + { + "name": "SERVICE_NAME", + "value": "Sites" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-03T12:43:40.126Z", + "uniqueQualifier": "1462511194025694775", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/KZHuaRruLn5lkB5lKfbr5bruz38\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "false" + } + ] + } + ] + }, + { + "kind": "admin#reports#activity", + "id": { + "time": "2024-05-03T12:42:57.125Z", + "uniqueQualifier": "2444645180561800039", + "applicationName": "admin", + "customerId": "ABCDEFG" + }, + "etag": "\"-9XJbs_5jOeBbnfNbf0i2Bm9r-Sxq7qDRhpkaaVPK6A/jjCS2080C-2siWcbEf6_0xEP56Q\"", + "actor": { + "callerType": "USER", + "email": "ipayne@example.net", + "profileId": "089885993421003892476" + }, + "ipAddress": "84.221.212.242", + "events": [ + { + "type": "ORG_SETTINGS", + "name": "TOGGLE_SERVICE_ENABLED", + "parameters": [ + { + "name": "DOMAIN_NAME", + "value": "example.org" + }, + { + "name": "ORG_UNIT_NAME", + "value": "Org Name" + }, + { + "name": "SERVICE_NAME", + "value": "DISABLE_UNLISTED_SERVICES" + }, + { + "name": "NEW_VALUE", + "value": "true" + } + ] + } + ] + } + ] + }, + "tenant_info": { + "domain": "example.org", + "topLevelOU": "Org Name" + }, + "domains": [ + "example.org", + "David Berg" + ], + "spf_records": [ + { + "domain": "example.org", + "rdata": [ + "v=spf1 include:_spf.google.com ~all" + ], + "log": [ + { + "query_name": "example.org", + "query_method": "traditional", + "query_result": "Query returned 1 txt records" + } + ] + }, + { + "domain": "Jill Hudson", + "rdata": [ + "v=spf1 include:spf.protection.outlook.com -all" + ], + "log": [ + { + "query_name": "Jill Hudson", + "query_method": "traditional", + "query_result": "Query returned 1 txt records" + } + ] + } + ], + "dkim_records": [ + { + "domain": "example.org", + "rdata": [ + "v=DKIM1; k=rsa; p=myfakeexamplepublickey;" + ], + "log": [ + { + "query_name": "google._domainkey.example.org", + "query_method": "traditional", + "query_result": "Query returned 1 txt records" + } + ] + }, + { + "domain": "Megan Cooper", + "rdata": [ + "v=DKIM1; k=rsa; p=myfakeexamplepublickey;" + ], + "log": [ + { + "query_name": "google._domainkey.Megan Cooper", + "query_method": "traditional", + "query_result": "Query returned NXDOMAIN" + }, + { + "query_name": "selector1._domainkey.Megan Cooper", + "query_method": "traditional", + "query_result": "Query returned NXDOMAIN" + }, + { + "query_name": "selector2._domainkey.Megan Cooper", + "query_method": "traditional", + "query_result": "Query returned 1 txt records" + } + ] + } + ], + "dmarc_records": [ + { + "domain": "example.org", + "rdata": [], + "log": [ + { + "query_name": "_dmarc.example.org", + "query_method": "traditional", + "query_result": "Query returned NXDOMAIN" + }, + { + "query_name": "_dmarc.example.org", + "query_method": "traditional", + "query_result": "Query returned NXDOMAIN" + } + ] + }, + { + "domain": "Christina Cobb", + "rdata": [ + "v=DMARC1; p=reject; pct=100; rua=mailto:zgill@example.com, mailto:zgill@example.com" + ], + "log": [ + { + "query_name": "_dmarc.Christina Cobb", + "query_method": "traditional", + "query_result": "Query returned NXDOMAIN" + }, + { + "query_name": "_dmarc.example.gov", + "query_method": "traditional", + "query_result": "Query returned 1 txt records" + } + ] + } + ], + "super_admins": [ + { + "primaryEmail": "kimbarnes1@example.org", + "orgUnitPath": "" + }, + { + "primaryEmail": "kimbarnes2@example.org", + "orgUnitPath": "" + }, + { + "primaryEmail": "kimbarnes3@example.org", + "orgUnitPath": "" + }, + { + "primaryEmail": "kimbarnes4@example.org", + "orgUnitPath": "" + }, + { + "primaryEmail": "kimbarnes5@example.org", + "orgUnitPath": "" + }, + { + "primaryEmail": "kimbarnes6@example.org", + "orgUnitPath": "" + }, + { + "primaryEmail": "kimbarnes7@example.org", + "orgUnitPath": "" + }, + { + "primaryEmail": "kimbarnes8@example.org", + "orgUnitPath": "" + }, + { + "primaryEmail": "kimbarnes9@example.org", + "orgUnitPath": "" + }, + { + "primaryEmail": "kimbarnes10@example.org", + "orgUnitPath": "" + }, + { + "primaryEmail": "kimbarnes11@example.org", + "orgUnitPath": "" + } + ], + "group_settings": [ + { + "kind": "groupsSettings#groups", + "email": "daniel44@example.org", + "name": "Benjamin Patterson", + "description": "Beta testing efforts for GWS AI-based DLP capabilities", + "whoCanJoin": "INVITED_CAN_JOIN", + "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", + "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", + "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", + "whoCanAdd": "ALL_MANAGERS_CAN_ADD", + "allowExternalMembers": "false", + "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", + "allowWebPosting": "true", + "primaryLanguage": "en_US", + "maxMessageBytes": 26214400, + "isArchived": "true", + "archiveOnly": "false", + "messageModerationLevel": "MODERATE_NONE", + "spamModerationLevel": "MODERATE", + "replyTo": "REPLY_TO_IGNORE", + "includeCustomFooter": "false", + "customFooterText": "", + "sendMessageDenyNotification": "false", + "defaultMessageDenyNotificationText": "", + "showInGroupDirectory": "true", + "allowGoogleCommunication": "false", + "membersCanPostAsTheGroup": "false", + "messageDisplayFont": "DEFAULT_FONT", + "includeInGlobalAddressList": "true", + "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", + "whoCanContactOwner": "ANYONE_CAN_CONTACT", + "whoCanAddReferences": "NONE", + "whoCanAssignTopics": "NONE", + "whoCanUnassignTopic": "NONE", + "whoCanTakeTopics": "NONE", + "whoCanMarkDuplicate": "NONE", + "whoCanMarkNoResponseNeeded": "NONE", + "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", + "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanEnterFreeFormTags": "NONE", + "whoCanModifyTagsAndCategories": "NONE", + "favoriteRepliesOnTop": "true", + "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", + "whoCanBanUsers": "OWNERS_AND_MANAGERS", + "whoCanModifyMembers": "OWNERS_AND_MANAGERS", + "whoCanApproveMessages": "OWNERS_AND_MANAGERS", + "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", + "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", + "whoCanLockTopics": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", + "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", + "whoCanHideAbuse": "NONE", + "whoCanMakeTopicsSticky": "NONE", + "whoCanModerateMembers": "OWNERS_AND_MANAGERS", + "whoCanModerateContent": "OWNERS_AND_MANAGERS", + "whoCanAssistContent": "NONE", + "customRolesEnabledForSettingsToBeMerged": "false", + "enableCollaborativeInbox": "false", + "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", + "defaultSender": "DEFAULT_SELF" + }, + { + "kind": "groupsSettings#groups", + "email": "daniel44@example.org", + "name": "Lori Bennett", + "description": "Lori Bennett", + "whoCanJoin": "INVITED_CAN_JOIN", + "whoCanViewMembership": "ALL_MANAGERS_CAN_VIEW", + "whoCanViewGroup": "ALL_IN_DOMAIN_CAN_VIEW", + "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", + "whoCanAdd": "ALL_MANAGERS_CAN_ADD", + "allowExternalMembers": "false", + "whoCanPostMessage": "ALL_MANAGERS_CAN_POST", + "allowWebPosting": "true", + "primaryLanguage": "en_US", + "maxMessageBytes": 26214400, + "isArchived": "true", + "archiveOnly": "false", + "messageModerationLevel": "MODERATE_NONE", + "spamModerationLevel": "MODERATE", + "replyTo": "REPLY_TO_IGNORE", + "includeCustomFooter": "false", + "customFooterText": "", + "sendMessageDenyNotification": "false", + "defaultMessageDenyNotificationText": "", + "showInGroupDirectory": "false", + "allowGoogleCommunication": "false", + "membersCanPostAsTheGroup": "false", + "messageDisplayFont": "DEFAULT_FONT", + "includeInGlobalAddressList": "true", + "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", + "whoCanContactOwner": "ANYONE_CAN_CONTACT", + "whoCanAddReferences": "NONE", + "whoCanAssignTopics": "NONE", + "whoCanUnassignTopic": "NONE", + "whoCanTakeTopics": "NONE", + "whoCanMarkDuplicate": "NONE", + "whoCanMarkNoResponseNeeded": "NONE", + "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", + "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanEnterFreeFormTags": "NONE", + "whoCanModifyTagsAndCategories": "NONE", + "favoriteRepliesOnTop": "true", + "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", + "whoCanBanUsers": "OWNERS_AND_MANAGERS", + "whoCanModifyMembers": "OWNERS_AND_MANAGERS", + "whoCanApproveMessages": "OWNERS_AND_MANAGERS", + "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", + "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", + "whoCanLockTopics": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", + "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", + "whoCanHideAbuse": "NONE", + "whoCanMakeTopicsSticky": "NONE", + "whoCanModerateMembers": "OWNERS_AND_MANAGERS", + "whoCanModerateContent": "OWNERS_AND_MANAGERS", + "whoCanAssistContent": "NONE", + "customRolesEnabledForSettingsToBeMerged": "false", + "enableCollaborativeInbox": "false", + "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", + "defaultSender": "DEFAULT_SELF" + }, + { + "kind": "groupsSettings#groups", + "email": "daniel44@example.org", + "name": "Classroom Teachers", + "description": "This group includes all Classroom teachers in your domain. Users who say they are teachers are added as pending members until you approve. Note that members of this group have additional privileges, which you can control in the Admin Console. WARNING: Do not delete this group.", + "whoCanJoin": "CAN_REQUEST_TO_JOIN", + "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", + "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", + "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", + "whoCanAdd": "ALL_MANAGERS_CAN_ADD", + "allowExternalMembers": "false", + "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", + "allowWebPosting": "true", + "primaryLanguage": "en_US", + "maxMessageBytes": 26214400, + "isArchived": "false", + "archiveOnly": "false", + "messageModerationLevel": "MODERATE_NONE", + "spamModerationLevel": "MODERATE", + "replyTo": "REPLY_TO_LIST", + "includeCustomFooter": "false", + "customFooterText": "", + "sendMessageDenyNotification": "false", + "defaultMessageDenyNotificationText": "", + "showInGroupDirectory": "true", + "allowGoogleCommunication": "false", + "membersCanPostAsTheGroup": "false", + "messageDisplayFont": "DEFAULT_FONT", + "includeInGlobalAddressList": "true", + "whoCanLeaveGroup": "ALL_OWNERS_CAN_LEAVE", + "whoCanContactOwner": "ANYONE_CAN_CONTACT", + "whoCanAddReferences": "NONE", + "whoCanAssignTopics": "NONE", + "whoCanUnassignTopic": "NONE", + "whoCanTakeTopics": "NONE", + "whoCanMarkDuplicate": "NONE", + "whoCanMarkNoResponseNeeded": "NONE", + "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", + "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanEnterFreeFormTags": "NONE", + "whoCanModifyTagsAndCategories": "NONE", + "favoriteRepliesOnTop": "true", + "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", + "whoCanBanUsers": "OWNERS_AND_MANAGERS", + "whoCanModifyMembers": "OWNERS_AND_MANAGERS", + "whoCanApproveMessages": "OWNERS_AND_MANAGERS", + "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", + "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", + "whoCanLockTopics": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", + "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", + "whoCanHideAbuse": "NONE", + "whoCanMakeTopicsSticky": "NONE", + "whoCanModerateMembers": "OWNERS_AND_MANAGERS", + "whoCanModerateContent": "OWNERS_AND_MANAGERS", + "whoCanAssistContent": "NONE", + "customRolesEnabledForSettingsToBeMerged": "false", + "enableCollaborativeInbox": "false", + "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", + "defaultSender": "DEFAULT_SELF" + }, + { + "kind": "groupsSettings#groups", + "email": "daniel44@example.org", + "name": "Maria Nelson", + "description": "hello world", + "whoCanJoin": "ALL_IN_DOMAIN_CAN_JOIN", + "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", + "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", + "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", + "whoCanAdd": "ALL_MANAGERS_CAN_ADD", + "allowExternalMembers": "false", + "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", + "allowWebPosting": "true", + "primaryLanguage": "en", + "maxMessageBytes": 26214400, + "isArchived": "true", + "archiveOnly": "false", + "messageModerationLevel": "MODERATE_NONE", + "spamModerationLevel": "MODERATE", + "replyTo": "REPLY_TO_IGNORE", + "includeCustomFooter": "false", + "customFooterText": "", + "sendMessageDenyNotification": "false", + "defaultMessageDenyNotificationText": "", + "showInGroupDirectory": "true", + "allowGoogleCommunication": "false", + "membersCanPostAsTheGroup": "false", + "messageDisplayFont": "DEFAULT_FONT", + "includeInGlobalAddressList": "true", + "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", + "whoCanContactOwner": "ALL_IN_DOMAIN_CAN_CONTACT", + "whoCanAddReferences": "NONE", + "whoCanAssignTopics": "OWNERS_AND_MANAGERS", + "whoCanUnassignTopic": "OWNERS_AND_MANAGERS", + "whoCanTakeTopics": "OWNERS_AND_MANAGERS", + "whoCanMarkDuplicate": "OWNERS_AND_MANAGERS", + "whoCanMarkNoResponseNeeded": "OWNERS_AND_MANAGERS", + "whoCanMarkFavoriteReplyOnAnyTopic": "OWNERS_AND_MANAGERS", + "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", + "whoCanUnmarkFavoriteReplyOnAnyTopic": "OWNERS_AND_MANAGERS", + "whoCanEnterFreeFormTags": "OWNERS_AND_MANAGERS", + "whoCanModifyTagsAndCategories": "OWNERS_AND_MANAGERS", + "favoriteRepliesOnTop": "true", + "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", + "whoCanBanUsers": "OWNERS_AND_MANAGERS", + "whoCanModifyMembers": "OWNERS_AND_MANAGERS", + "whoCanApproveMessages": "OWNERS_AND_MANAGERS", + "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", + "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", + "whoCanLockTopics": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", + "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", + "whoCanHideAbuse": "OWNERS_AND_MANAGERS", + "whoCanMakeTopicsSticky": "OWNERS_AND_MANAGERS", + "whoCanModerateMembers": "OWNERS_AND_MANAGERS", + "whoCanModerateContent": "OWNERS_AND_MANAGERS", + "whoCanAssistContent": "OWNERS_AND_MANAGERS", + "customRolesEnabledForSettingsToBeMerged": "false", + "enableCollaborativeInbox": "false", + "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", + "defaultSender": "DEFAULT_SELF" + }, + { + "kind": "groupsSettings#groups", + "email": "daniel44@example.org", + "name": "Donald Ross", + "description": "", + "whoCanJoin": "INVITED_CAN_JOIN", + "whoCanViewMembership": "ALL_IN_DOMAIN_CAN_VIEW", + "whoCanViewGroup": "ALL_IN_DOMAIN_CAN_VIEW", + "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", + "whoCanAdd": "ALL_MANAGERS_CAN_ADD", + "allowExternalMembers": "false", + "whoCanPostMessage": "ALL_IN_DOMAIN_CAN_POST", + "allowWebPosting": "true", + "primaryLanguage": "en_US", + "maxMessageBytes": 26214400, + "isArchived": "true", + "archiveOnly": "false", + "messageModerationLevel": "MODERATE_NONE", + "spamModerationLevel": "MODERATE", + "replyTo": "REPLY_TO_IGNORE", + "includeCustomFooter": "false", + "customFooterText": "", + "sendMessageDenyNotification": "false", + "defaultMessageDenyNotificationText": "", + "showInGroupDirectory": "true", + "allowGoogleCommunication": "false", + "membersCanPostAsTheGroup": "false", + "messageDisplayFont": "DEFAULT_FONT", + "includeInGlobalAddressList": "true", + "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", + "whoCanContactOwner": "ANYONE_CAN_CONTACT", + "whoCanAddReferences": "NONE", + "whoCanAssignTopics": "NONE", + "whoCanUnassignTopic": "NONE", + "whoCanTakeTopics": "NONE", + "whoCanMarkDuplicate": "NONE", + "whoCanMarkNoResponseNeeded": "NONE", + "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", + "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanEnterFreeFormTags": "NONE", + "whoCanModifyTagsAndCategories": "NONE", + "favoriteRepliesOnTop": "true", + "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", + "whoCanBanUsers": "OWNERS_AND_MANAGERS", + "whoCanModifyMembers": "OWNERS_AND_MANAGERS", + "whoCanApproveMessages": "OWNERS_AND_MANAGERS", + "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", + "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", + "whoCanLockTopics": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", + "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", + "whoCanHideAbuse": "NONE", + "whoCanMakeTopicsSticky": "NONE", + "whoCanModerateMembers": "OWNERS_AND_MANAGERS", + "whoCanModerateContent": "OWNERS_AND_MANAGERS", + "whoCanAssistContent": "NONE", + "customRolesEnabledForSettingsToBeMerged": "false", + "enableCollaborativeInbox": "false", + "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", + "defaultSender": "DEFAULT_SELF" + }, + { + "kind": "groupsSettings#groups", + "email": "daniel44@example.org", + "name": "Joseph Hardy", + "description": "hi", + "whoCanJoin": "INVITED_CAN_JOIN", + "whoCanViewMembership": "ALL_IN_DOMAIN_CAN_VIEW", + "whoCanViewGroup": "ALL_IN_DOMAIN_CAN_VIEW", + "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", + "whoCanAdd": "ALL_MANAGERS_CAN_ADD", + "allowExternalMembers": "false", + "whoCanPostMessage": "ALL_IN_DOMAIN_CAN_POST", + "allowWebPosting": "true", + "primaryLanguage": "en_US", + "maxMessageBytes": 26214400, + "isArchived": "true", + "archiveOnly": "false", + "messageModerationLevel": "MODERATE_NONE", + "spamModerationLevel": "MODERATE", + "replyTo": "REPLY_TO_IGNORE", + "includeCustomFooter": "false", + "customFooterText": "", + "sendMessageDenyNotification": "false", + "defaultMessageDenyNotificationText": "", + "showInGroupDirectory": "true", + "allowGoogleCommunication": "false", + "membersCanPostAsTheGroup": "false", + "messageDisplayFont": "DEFAULT_FONT", + "includeInGlobalAddressList": "true", + "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", + "whoCanContactOwner": "ANYONE_CAN_CONTACT", + "whoCanAddReferences": "NONE", + "whoCanAssignTopics": "NONE", + "whoCanUnassignTopic": "NONE", + "whoCanTakeTopics": "NONE", + "whoCanMarkDuplicate": "NONE", + "whoCanMarkNoResponseNeeded": "NONE", + "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", + "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanEnterFreeFormTags": "NONE", + "whoCanModifyTagsAndCategories": "NONE", + "favoriteRepliesOnTop": "true", + "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", + "whoCanBanUsers": "OWNERS_AND_MANAGERS", + "whoCanModifyMembers": "OWNERS_AND_MANAGERS", + "whoCanApproveMessages": "OWNERS_AND_MANAGERS", + "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", + "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", + "whoCanLockTopics": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", + "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", + "whoCanHideAbuse": "NONE", + "whoCanMakeTopicsSticky": "NONE", + "whoCanModerateMembers": "OWNERS_AND_MANAGERS", + "whoCanModerateContent": "OWNERS_AND_MANAGERS", + "whoCanAssistContent": "NONE", + "customRolesEnabledForSettingsToBeMerged": "false", + "enableCollaborativeInbox": "false", + "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", + "defaultSender": "DEFAULT_SELF" + }, + { + "kind": "groupsSettings#groups", + "email": "daniel44@example.org", + "name": "Christopher Sullivan", + "description": "hello world", + "whoCanJoin": "INVITED_CAN_JOIN", + "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", + "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", + "whoCanInvite": "ALL_OWNERS_CAN_INVITE", + "whoCanAdd": "ALL_OWNERS_CAN_ADD", + "allowExternalMembers": "true", + "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", + "allowWebPosting": "false", + "primaryLanguage": "en_US", + "maxMessageBytes": 26214400, + "isArchived": "true", + "archiveOnly": "false", + "messageModerationLevel": "MODERATE_NONE", + "spamModerationLevel": "MODERATE", + "replyTo": "REPLY_TO_IGNORE", + "includeCustomFooter": "false", + "customFooterText": "", + "sendMessageDenyNotification": "false", + "defaultMessageDenyNotificationText": "", + "showInGroupDirectory": "true", + "allowGoogleCommunication": "false", + "membersCanPostAsTheGroup": "false", + "messageDisplayFont": "DEFAULT_FONT", + "includeInGlobalAddressList": "true", + "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", + "whoCanContactOwner": "ALL_MEMBERS_CAN_CONTACT", + "whoCanAddReferences": "NONE", + "whoCanAssignTopics": "NONE", + "whoCanUnassignTopic": "NONE", + "whoCanTakeTopics": "NONE", + "whoCanMarkDuplicate": "NONE", + "whoCanMarkNoResponseNeeded": "NONE", + "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", + "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanEnterFreeFormTags": "NONE", + "whoCanModifyTagsAndCategories": "NONE", + "favoriteRepliesOnTop": "true", + "whoCanApproveMembers": "ALL_OWNERS_CAN_APPROVE", + "whoCanBanUsers": "OWNERS_ONLY", + "whoCanModifyMembers": "OWNERS_ONLY", + "whoCanApproveMessages": "OWNERS_AND_MANAGERS", + "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", + "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", + "whoCanLockTopics": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", + "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", + "whoCanHideAbuse": "NONE", + "whoCanMakeTopicsSticky": "NONE", + "whoCanModerateMembers": "OWNERS_ONLY", + "whoCanModerateContent": "OWNERS_AND_MANAGERS", + "whoCanAssistContent": "NONE", + "customRolesEnabledForSettingsToBeMerged": "false", + "enableCollaborativeInbox": "true", + "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", + "defaultSender": "DEFAULT_SELF" + }, + { + "kind": "groupsSettings#groups", + "email": "daniel44@example.org", + "name": "Joel Knight", + "description": "This is a internal group for technical content owners to keep track of changes for the security configuration baseline.", + "whoCanJoin": "INVITED_CAN_JOIN", + "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", + "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", + "whoCanInvite": "ALL_OWNERS_CAN_INVITE", + "whoCanAdd": "ALL_OWNERS_CAN_ADD", + "allowExternalMembers": "true", + "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", + "allowWebPosting": "true", + "primaryLanguage": "en_US", + "maxMessageBytes": 26214400, + "isArchived": "true", + "archiveOnly": "false", + "messageModerationLevel": "MODERATE_NONE", + "spamModerationLevel": "MODERATE", + "replyTo": "REPLY_TO_IGNORE", + "includeCustomFooter": "false", + "customFooterText": "", + "sendMessageDenyNotification": "false", + "defaultMessageDenyNotificationText": "", + "showInGroupDirectory": "true", + "allowGoogleCommunication": "false", + "membersCanPostAsTheGroup": "false", + "messageDisplayFont": "DEFAULT_FONT", + "includeInGlobalAddressList": "true", + "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", + "whoCanContactOwner": "ALL_MEMBERS_CAN_CONTACT", + "whoCanAddReferences": "NONE", + "whoCanAssignTopics": "NONE", + "whoCanUnassignTopic": "NONE", + "whoCanTakeTopics": "NONE", + "whoCanMarkDuplicate": "NONE", + "whoCanMarkNoResponseNeeded": "NONE", + "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", + "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanEnterFreeFormTags": "NONE", + "whoCanModifyTagsAndCategories": "NONE", + "favoriteRepliesOnTop": "true", + "whoCanApproveMembers": "ALL_OWNERS_CAN_APPROVE", + "whoCanBanUsers": "OWNERS_ONLY", + "whoCanModifyMembers": "OWNERS_ONLY", + "whoCanApproveMessages": "OWNERS_AND_MANAGERS", + "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", + "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", + "whoCanLockTopics": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", + "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", + "whoCanHideAbuse": "NONE", + "whoCanMakeTopicsSticky": "NONE", + "whoCanModerateMembers": "OWNERS_ONLY", + "whoCanModerateContent": "OWNERS_AND_MANAGERS", + "whoCanAssistContent": "NONE", + "customRolesEnabledForSettingsToBeMerged": "false", + "enableCollaborativeInbox": "true", + "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", + "defaultSender": "DEFAULT_SELF" + }, + { + "kind": "groupsSettings#groups", + "email": "daniel44@example.org", + "name": "Security Group", + "description": "", + "whoCanJoin": "INVITED_CAN_JOIN", + "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", + "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", + "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", + "whoCanAdd": "ALL_MANAGERS_CAN_ADD", + "allowExternalMembers": "false", + "whoCanPostMessage": "ALL_IN_DOMAIN_CAN_POST", + "allowWebPosting": "true", + "primaryLanguage": "en_US", + "maxMessageBytes": 26214400, + "isArchived": "false", + "archiveOnly": "false", + "messageModerationLevel": "MODERATE_NONE", + "spamModerationLevel": "MODERATE", + "replyTo": "REPLY_TO_IGNORE", + "includeCustomFooter": "false", + "customFooterText": "", + "sendMessageDenyNotification": "false", + "defaultMessageDenyNotificationText": "", + "showInGroupDirectory": "true", + "allowGoogleCommunication": "false", + "membersCanPostAsTheGroup": "false", + "messageDisplayFont": "DEFAULT_FONT", + "includeInGlobalAddressList": "true", + "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", + "whoCanContactOwner": "ALL_IN_DOMAIN_CAN_CONTACT", + "whoCanAddReferences": "NONE", + "whoCanAssignTopics": "NONE", + "whoCanUnassignTopic": "NONE", + "whoCanTakeTopics": "NONE", + "whoCanMarkDuplicate": "NONE", + "whoCanMarkNoResponseNeeded": "NONE", + "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", + "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanEnterFreeFormTags": "NONE", + "whoCanModifyTagsAndCategories": "NONE", + "favoriteRepliesOnTop": "true", + "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", + "whoCanBanUsers": "OWNERS_AND_MANAGERS", + "whoCanModifyMembers": "OWNERS_AND_MANAGERS", + "whoCanApproveMessages": "OWNERS_AND_MANAGERS", + "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", + "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", + "whoCanLockTopics": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", + "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", + "whoCanHideAbuse": "NONE", + "whoCanMakeTopicsSticky": "NONE", + "whoCanModerateMembers": "OWNERS_AND_MANAGERS", + "whoCanModerateContent": "OWNERS_AND_MANAGERS", + "whoCanAssistContent": "NONE", + "customRolesEnabledForSettingsToBeMerged": "false", + "enableCollaborativeInbox": "false", + "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", + "defaultSender": "DEFAULT_SELF" + }, + { + "kind": "groupsSettings#groups", + "email": "daniel44@example.org", + "name": "Scott Garcia", + "description": "This group is a secret", + "whoCanJoin": "INVITED_CAN_JOIN", + "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", + "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", + "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", + "whoCanAdd": "ALL_MANAGERS_CAN_ADD", + "allowExternalMembers": "true", + "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", + "allowWebPosting": "true", + "primaryLanguage": "en_US", + "maxMessageBytes": 26214400, + "isArchived": "true", + "archiveOnly": "false", + "messageModerationLevel": "MODERATE_NONE", + "spamModerationLevel": "MODERATE", + "replyTo": "REPLY_TO_IGNORE", + "includeCustomFooter": "false", + "customFooterText": "", + "sendMessageDenyNotification": "false", + "defaultMessageDenyNotificationText": "", + "showInGroupDirectory": "true", + "allowGoogleCommunication": "false", + "membersCanPostAsTheGroup": "false", + "messageDisplayFont": "DEFAULT_FONT", + "includeInGlobalAddressList": "true", + "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", + "whoCanContactOwner": "ANYONE_CAN_CONTACT", + "whoCanAddReferences": "NONE", + "whoCanAssignTopics": "NONE", + "whoCanUnassignTopic": "NONE", + "whoCanTakeTopics": "NONE", + "whoCanMarkDuplicate": "NONE", + "whoCanMarkNoResponseNeeded": "NONE", + "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", + "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanEnterFreeFormTags": "NONE", + "whoCanModifyTagsAndCategories": "NONE", + "favoriteRepliesOnTop": "true", + "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", + "whoCanBanUsers": "OWNERS_AND_MANAGERS", + "whoCanModifyMembers": "OWNERS_AND_MANAGERS", + "whoCanApproveMessages": "OWNERS_AND_MANAGERS", + "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", + "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", + "whoCanLockTopics": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", + "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", + "whoCanHideAbuse": "NONE", + "whoCanMakeTopicsSticky": "NONE", + "whoCanModerateMembers": "OWNERS_AND_MANAGERS", + "whoCanModerateContent": "OWNERS_AND_MANAGERS", + "whoCanAssistContent": "NONE", + "customRolesEnabledForSettingsToBeMerged": "false", + "enableCollaborativeInbox": "false", + "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", + "defaultSender": "DEFAULT_SELF" + }, + { + "kind": "groupsSettings#groups", + "email": "daniel44@example.org", + "name": "Test Hide 2", + "description": "", + "whoCanJoin": "INVITED_CAN_JOIN", + "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", + "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", + "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", + "whoCanAdd": "ALL_MANAGERS_CAN_ADD", + "allowExternalMembers": "false", + "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", + "allowWebPosting": "true", + "primaryLanguage": "en", + "maxMessageBytes": 26214400, + "isArchived": "true", + "archiveOnly": "false", + "messageModerationLevel": "MODERATE_NONE", + "spamModerationLevel": "MODERATE", + "replyTo": "REPLY_TO_IGNORE", + "includeCustomFooter": "false", + "customFooterText": "", + "sendMessageDenyNotification": "false", + "defaultMessageDenyNotificationText": "", + "showInGroupDirectory": "false", + "allowGoogleCommunication": "false", + "membersCanPostAsTheGroup": "false", + "messageDisplayFont": "DEFAULT_FONT", + "includeInGlobalAddressList": "true", + "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", + "whoCanContactOwner": "ALL_IN_DOMAIN_CAN_CONTACT", + "whoCanAddReferences": "NONE", + "whoCanAssignTopics": "OWNERS_AND_MANAGERS", + "whoCanUnassignTopic": "OWNERS_AND_MANAGERS", + "whoCanTakeTopics": "OWNERS_AND_MANAGERS", + "whoCanMarkDuplicate": "OWNERS_AND_MANAGERS", + "whoCanMarkNoResponseNeeded": "OWNERS_AND_MANAGERS", + "whoCanMarkFavoriteReplyOnAnyTopic": "OWNERS_AND_MANAGERS", + "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", + "whoCanUnmarkFavoriteReplyOnAnyTopic": "OWNERS_AND_MANAGERS", + "whoCanEnterFreeFormTags": "OWNERS_AND_MANAGERS", + "whoCanModifyTagsAndCategories": "OWNERS_AND_MANAGERS", + "favoriteRepliesOnTop": "true", + "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", + "whoCanBanUsers": "OWNERS_AND_MANAGERS", + "whoCanModifyMembers": "OWNERS_AND_MANAGERS", + "whoCanApproveMessages": "OWNERS_AND_MANAGERS", + "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", + "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", + "whoCanLockTopics": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", + "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", + "whoCanHideAbuse": "OWNERS_AND_MANAGERS", + "whoCanMakeTopicsSticky": "OWNERS_AND_MANAGERS", + "whoCanModerateMembers": "OWNERS_AND_MANAGERS", + "whoCanModerateContent": "OWNERS_AND_MANAGERS", + "whoCanAssistContent": "OWNERS_AND_MANAGERS", + "customRolesEnabledForSettingsToBeMerged": "false", + "enableCollaborativeInbox": "false", + "whoCanDiscoverGroup": "ALL_MEMBERS_CAN_DISCOVER", + "defaultSender": "DEFAULT_SELF" + }, + { + "kind": "groupsSettings#groups", + "email": "daniel44@example.org", + "name": "Test Group", + "description": "This is for testing purposes", + "whoCanJoin": "CAN_REQUEST_TO_JOIN", + "whoCanViewMembership": "ALL_MEMBERS_CAN_VIEW", + "whoCanViewGroup": "ALL_MEMBERS_CAN_VIEW", + "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", + "whoCanAdd": "ALL_MANAGERS_CAN_ADD", + "allowExternalMembers": "false", + "whoCanPostMessage": "ALL_MEMBERS_CAN_POST", + "allowWebPosting": "true", + "primaryLanguage": "en_US", + "maxMessageBytes": 26214400, + "isArchived": "true", + "archiveOnly": "false", + "messageModerationLevel": "MODERATE_NONE", + "spamModerationLevel": "MODERATE", + "replyTo": "REPLY_TO_IGNORE", + "includeCustomFooter": "false", + "customFooterText": "", + "sendMessageDenyNotification": "false", + "defaultMessageDenyNotificationText": "", + "showInGroupDirectory": "true", + "allowGoogleCommunication": "false", + "membersCanPostAsTheGroup": "false", + "messageDisplayFont": "DEFAULT_FONT", + "includeInGlobalAddressList": "true", + "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", + "whoCanContactOwner": "ANYONE_CAN_CONTACT", + "whoCanAddReferences": "NONE", + "whoCanAssignTopics": "NONE", + "whoCanUnassignTopic": "NONE", + "whoCanTakeTopics": "NONE", + "whoCanMarkDuplicate": "NONE", + "whoCanMarkNoResponseNeeded": "NONE", + "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", + "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanEnterFreeFormTags": "NONE", + "whoCanModifyTagsAndCategories": "NONE", + "favoriteRepliesOnTop": "true", + "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", + "whoCanBanUsers": "OWNERS_AND_MANAGERS", + "whoCanModifyMembers": "OWNERS_AND_MANAGERS", + "whoCanApproveMessages": "OWNERS_AND_MANAGERS", + "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", + "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", + "whoCanLockTopics": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", + "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", + "whoCanHideAbuse": "NONE", + "whoCanMakeTopicsSticky": "NONE", + "whoCanModerateMembers": "OWNERS_AND_MANAGERS", + "whoCanModerateContent": "OWNERS_AND_MANAGERS", + "whoCanAssistContent": "NONE", + "customRolesEnabledForSettingsToBeMerged": "false", + "enableCollaborativeInbox": "false", + "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", + "defaultSender": "DEFAULT_SELF" + }, + { + "kind": "groupsSettings#groups", + "email": "daniel44@example.org", + "name": "Test Hiding", + "description": "", + "whoCanJoin": "INVITED_CAN_JOIN", + "whoCanViewMembership": "ALL_IN_DOMAIN_CAN_VIEW", + "whoCanViewGroup": "ALL_IN_DOMAIN_CAN_VIEW", + "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", + "whoCanAdd": "ALL_MANAGERS_CAN_ADD", + "allowExternalMembers": "false", + "whoCanPostMessage": "ALL_IN_DOMAIN_CAN_POST", + "allowWebPosting": "true", + "primaryLanguage": "en_US", + "maxMessageBytes": 26214400, + "isArchived": "true", + "archiveOnly": "false", + "messageModerationLevel": "MODERATE_NONE", + "spamModerationLevel": "MODERATE", + "replyTo": "REPLY_TO_IGNORE", + "includeCustomFooter": "false", + "customFooterText": "", + "sendMessageDenyNotification": "false", + "defaultMessageDenyNotificationText": "", + "showInGroupDirectory": "false", + "allowGoogleCommunication": "false", + "membersCanPostAsTheGroup": "false", + "messageDisplayFont": "DEFAULT_FONT", + "includeInGlobalAddressList": "true", + "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", + "whoCanContactOwner": "ANYONE_CAN_CONTACT", + "whoCanAddReferences": "NONE", + "whoCanAssignTopics": "NONE", + "whoCanUnassignTopic": "NONE", + "whoCanTakeTopics": "NONE", + "whoCanMarkDuplicate": "NONE", + "whoCanMarkNoResponseNeeded": "NONE", + "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", + "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanEnterFreeFormTags": "NONE", + "whoCanModifyTagsAndCategories": "NONE", + "favoriteRepliesOnTop": "true", + "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", + "whoCanBanUsers": "OWNERS_AND_MANAGERS", + "whoCanModifyMembers": "OWNERS_AND_MANAGERS", + "whoCanApproveMessages": "OWNERS_AND_MANAGERS", + "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", + "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", + "whoCanLockTopics": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", + "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", + "whoCanHideAbuse": "NONE", + "whoCanMakeTopicsSticky": "NONE", + "whoCanModerateMembers": "OWNERS_AND_MANAGERS", + "whoCanModerateContent": "OWNERS_AND_MANAGERS", + "whoCanAssistContent": "NONE", + "customRolesEnabledForSettingsToBeMerged": "false", + "enableCollaborativeInbox": "false", + "whoCanDiscoverGroup": "ALL_MEMBERS_CAN_DISCOVER", + "defaultSender": "DEFAULT_SELF" + }, + { + "kind": "groupsSettings#groups", + "email": "daniel44@example.org", + "name": "Terry Eaton", + "description": "", + "whoCanJoin": "INVITED_CAN_JOIN", + "whoCanViewMembership": "ALL_IN_DOMAIN_CAN_VIEW", + "whoCanViewGroup": "ALL_IN_DOMAIN_CAN_VIEW", + "whoCanInvite": "ALL_MANAGERS_CAN_INVITE", + "whoCanAdd": "ALL_MANAGERS_CAN_ADD", + "allowExternalMembers": "false", + "whoCanPostMessage": "ALL_IN_DOMAIN_CAN_POST", + "allowWebPosting": "true", + "primaryLanguage": "en_US", + "maxMessageBytes": 26214400, + "isArchived": "true", + "archiveOnly": "false", + "messageModerationLevel": "MODERATE_NONE", + "spamModerationLevel": "MODERATE", + "replyTo": "REPLY_TO_IGNORE", + "includeCustomFooter": "false", + "customFooterText": "", + "sendMessageDenyNotification": "false", + "defaultMessageDenyNotificationText": "", + "showInGroupDirectory": "true", + "allowGoogleCommunication": "false", + "membersCanPostAsTheGroup": "false", + "messageDisplayFont": "DEFAULT_FONT", + "includeInGlobalAddressList": "true", + "whoCanLeaveGroup": "ALL_MEMBERS_CAN_LEAVE", + "whoCanContactOwner": "ANYONE_CAN_CONTACT", + "whoCanAddReferences": "NONE", + "whoCanAssignTopics": "NONE", + "whoCanUnassignTopic": "NONE", + "whoCanTakeTopics": "NONE", + "whoCanMarkDuplicate": "NONE", + "whoCanMarkNoResponseNeeded": "NONE", + "whoCanMarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanMarkFavoriteReplyOnOwnTopic": "NONE", + "whoCanUnmarkFavoriteReplyOnAnyTopic": "NONE", + "whoCanEnterFreeFormTags": "NONE", + "whoCanModifyTagsAndCategories": "NONE", + "favoriteRepliesOnTop": "true", + "whoCanApproveMembers": "ALL_MANAGERS_CAN_APPROVE", + "whoCanBanUsers": "OWNERS_AND_MANAGERS", + "whoCanModifyMembers": "OWNERS_AND_MANAGERS", + "whoCanApproveMessages": "OWNERS_AND_MANAGERS", + "whoCanDeleteAnyPost": "OWNERS_AND_MANAGERS", + "whoCanDeleteTopics": "OWNERS_AND_MANAGERS", + "whoCanLockTopics": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsIn": "OWNERS_AND_MANAGERS", + "whoCanMoveTopicsOut": "OWNERS_AND_MANAGERS", + "whoCanPostAnnouncements": "OWNERS_AND_MANAGERS", + "whoCanHideAbuse": "NONE", + "whoCanMakeTopicsSticky": "NONE", + "whoCanModerateMembers": "OWNERS_AND_MANAGERS", + "whoCanModerateContent": "OWNERS_AND_MANAGERS", + "whoCanAssistContent": "NONE", + "customRolesEnabledForSettingsToBeMerged": "false", + "enableCollaborativeInbox": "false", + "whoCanDiscoverGroup": "ALL_IN_DOMAIN_CAN_DISCOVER", + "defaultSender": "DEFAULT_SELF" + } + ], + "successful_calls": [ + "get_dkim_records", + "directory/v1/orgunits/list", + "directory/v1/groups/list", + "get_dmarc_records", + "directory/v1/users/list", + "reports/v1/activities/list", + "groups-settings/v1/groups/get", + "get_spf_records", + "directory/v1/domains/list" + ], + "unsuccessful_calls": [] + } } \ No newline at end of file diff --git a/sample-report/TestResults.json b/scubagoggles/sample-report/TestResults.json similarity index 97% rename from sample-report/TestResults.json rename to scubagoggles/sample-report/TestResults.json index c4d6cea9..a5464221 100644 --- a/sample-report/TestResults.json +++ b/scubagoggles/sample-report/TestResults.json @@ -1,1375 +1,1375 @@ -[ - { - "ActualValue": "\"\"", - "Criticality": "\"Shall/Not-Implemented\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.CALENDAR.3.2v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"ENABLE_EWS_INTEROP\": \"false\"}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CALENDAR.3.1v0.3\"", - "ReportDetails": "\"Requirement met.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CALENDAR.1.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CALENDAR.2.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CALENDAR.4.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"SHARING_OUTSIDE_DOMAIN_FOR_SECONDARY_CALENDAR\": \"READ_WRITE_ACCESS\"}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CALENDAR.1.2v0.3\"", - "ReportDetails": "\"Requirement not met.
    Highest Level of Sharing: Share all information, and outsiders can change calendars.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Should/Not-Implemented\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.CHAT.5.1v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CHAT.1.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CHAT.1.2v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CHAT.2.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CHAT.4.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CHAT.6.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.
    WARNING: from the log events alone, it is not possible to distinguish between an OU inheriting settings from its parent and content reporting being disabled entirely. It's possible this tool classified some child OUs as compliant due to this limitation; manual check recommended for child OUs due to this edge case.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CHAT.3.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CHAT.6.2v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CLASSROOM.1.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CLASSROOM.1.2v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CLASSROOM.2.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CLASSROOM.4.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CLASSROOM.5.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.CLASSROOM.3.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Shall/Not-Implemented\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Results for GWS.COMMONCONTROLS.13 are listed in the Rules Report.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Shall/Not-Implemented\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.14.1v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Shall/Not-Implemented\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.14.2v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Shall/Not-Implemented\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.15.1v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Shall/Not-Implemented\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.6.1v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Shall/Not-Implemented\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.7.1v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Shall/Not-Implemented\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.9.1v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Should/Not-Implemented\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.9.2v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"No relevant event for the top-level OU in the current logs\"", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.1.1v0.3\"", - "ReportDetails": "\"No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"No relevant event for the top-level OU in the current logs\"", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.10.3v0.3\"", - "ReportDetails": "\"No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"No relevant event for the top-level OU in the current logs\"", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.10.4v0.3\"", - "ReportDetails": "\"No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"No relevant event for the top-level OU in the current logs\"", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.12.1v0.3\"", - "ReportDetails": "\"No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"No relevant event for the top-level OU in the current logs\"", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.15.2v0.3\"", - "ReportDetails": "\"No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is compliant; manual check recommended.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "\"No relevant event for the top-level OU in the current logs\"", - "Criticality": "\"Should\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.11.2v0.3\"", - "ReportDetails": "\"No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is compliant; manual check recommended.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.1.4v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.8.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"New user enrollment period is set to 6 months\"}]}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.1.2v0.3\"", - "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: New user enrollment period is set to 6 months
    \"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"Users can install and run any internal app, even if it's not allowlisted\"}]}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.11.1v0.3\"", - "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: Users can install and run any internal app, even if it's not allowlisted
    \"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [{\"Name\": \"cgray@example.net\", \"Value\": \"Allow user to trust the device is ON\"}], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.1.3v0.3\"", - "ReportDetails": "\"The following groups are non-compliant:
    • ihicks@example.org: Allow user to trust the device is ON
    \"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.3.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.4.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.5.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.5.2v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.5.4v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.5.5v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.16.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"Enforce password policy at next sign-in is OFF\"}]}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.5.3v0.3\"", - "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: Enforce password policy at next sign-in is OFF
    \"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"Require multi party approval for sensitive admin actions is DISABLED\"}]}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.17.1v0.3\"", - "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: Require multi party approval for sensitive admin actions is DISABLED
    \"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"TOGGLE_CAA_ENABLEMENT\": \"ENABLED\"}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.2.1v0.3\"", - "ReportDetails": "\"Requirement met.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[\"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\"]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.6.2v0.3\"", - "Prerequisites": "[\"directory/v1/users/list\"]", - "ReportDetails": "\"The following super admins are configured: michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org. Note: Exceptions are allowed for \\\"break glass\\\" super admin accounts, though we are not able to account for this automatically.\"", - "RequirementMet": "false" - }, - { - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.10.1v0.3\"", - "ReportDetails": "\"Requirement met.\"", - "RequirementMet": "true" - }, - { - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.10.2v0.3\"", - "ReportDetails": "\"Requirement met.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Should/Not-Implemented\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.DRIVEDOCS.7.1v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.1.3v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.1.4v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.1.5v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.1.6v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.1.7v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.1.8v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.1.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.1.2v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.2.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": [{\"Name\": \"Kimberly Keller DDS\", \"Value\": \"Drive SDK is enabled\"}]}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.4.1v0.3\"", - "ReportDetails": "\"The following OUs are non-compliant:
    • Jamie Martin: Drive SDK is enabled
    \"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"People who aren't shared drive members can be added to files\"}]}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.2.3v0.3\"", - "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: People who aren't shared drive members can be added to files
    \"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"Users can install Google Docs add-ons from add-ons store.\"}]}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.5.1v0.3\"", - "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: Users can install Google Docs add-ons from add-ons store.
    \"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"Users outside the organization can access files in shared drives\"}]}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.2.2v0.3\"", - "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: Users outside the organization can access files in shared drives
    \"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"Viewers and commenters are allowed to download, print, and copy files\"}]}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.2.4v0.3\"", - "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: Viewers and commenters are allowed to download, print, and copy files
    \"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [{\"Name\": \"moorekimberly@example.net\", \"Value\": \"Drive for Desktop is enabled and can be used on any device.\"}, {\"Name\": \"moorekimberly@example.net\", \"Value\": \"Drive for Desktop is enabled and can be used on any device.\"}, {\"Name\": \"moorekimberly@example.net\", \"Value\": \"Drive for Desktop is enabled and can be used on any device.\"}], \"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.6.1v0.3\"", - "ReportDetails": "\"The following groups are non-compliant:
    • erika07@example.net: Drive for Desktop is enabled and can be used on any device.
    • erika07@example.net: Drive for Desktop is enabled and can be used on any device.
    • erika07@example.net: Drive for Desktop is enabled and can be used on any device.
    \"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.DRIVEDOCS.3.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"May/Not-Implemented\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.10.2v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Shall/Not-Implemented\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.18.3v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Shall/Not-Implemented\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.19.1v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Shall/Not-Implemented\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.19.2v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Shall/Not-Implemented\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.19.3v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Should/Not-Implemented\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.15.2v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Should/Not-Implemented\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.16.2v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Should/Not-Implemented\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.17.1v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Should/Not-Implemented\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.18.1v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Should/Not-Implemented\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.18.2v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Should/Not-Implemented\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.5.6v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please check manually.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Should/Not-Implemented\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.6.5v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "\"\"", - "Criticality": "\"Should/Not-Implemented\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.7.8v0.3\"", - "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[{\"domain\": \"example.org\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}], \"rdata\": []}, {\"domain\": \"Leslie Humphrey\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.Leslie Humphrey\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.gov\", \"query_result\": \"Query returned 1 txt records\"}], \"rdata\": [\"v=DMARC1; p=reject; pct=100; rua=mailto:alexander67@example.com, mailto:alexander67@example.com\"]}]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.4.1v0.3\"", - "Prerequisites": "[\"directory/v1/domains/list\", \"get_dmarc_records\"]", - "ReportDetails": "\"1 of 2 agency domain(s) found in violation: example.org.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[{\"domain\": \"example.org\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}], \"rdata\": []}, {\"domain\": \"Amanda Berg\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.Amanda Berg\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.gov\", \"query_result\": \"Query returned 1 txt records\"}], \"rdata\": [\"v=DMARC1; p=reject; pct=100; rua=mailto:sampsonamy@example.net, mailto:sampsonamy@example.net\"]}]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.4.2v0.3\"", - "Prerequisites": "[\"directory/v1/domains/list\", \"get_dmarc_records\"]", - "ReportDetails": "\"1 of 2 agency domain(s) found in violation: example.org.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[{\"domain\": \"example.org\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}], \"rdata\": []}, {\"domain\": \"Jason Rodriguez\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.Jason Rodriguez\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.gov\", \"query_result\": \"Query returned 1 txt records\"}], \"rdata\": [\"v=DMARC1; p=reject; pct=100; rua=mailto:cervantesmary@example.com, mailto:cervantesmary@example.com\"]}]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.4.3v0.3\"", - "Prerequisites": "[\"directory/v1/domains/list\", \"get_dmarc_records\"]", - "ReportDetails": "\"1 of 2 agency domain(s) found in violation: example.org.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[{\"domain\": \"example.org\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}], \"rdata\": []}, {\"domain\": \"Rebecca Hughes\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.Rebecca Hughes\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.gov\", \"query_result\": \"Query returned 1 txt records\"}], \"rdata\": [\"v=DMARC1; p=reject; pct=100; rua=mailto:qdavis@example.com, mailto:qdavis@example.com\"]}]", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.4.4v0.3\"", - "Prerequisites": "[\"directory/v1/domains/list\", \"get_dmarc_records\"]", - "ReportDetails": "\"1 of 2 agency domain(s) found in violation: example.org.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[{\"domain\": \"example.org\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"google._domainkey.example.org\", \"query_result\": \"Query returned 1 txt records\"}], \"rdata\": [\"v=DKIM1; k=rsa; p=myfakeexamplepublickey\"]}, {\"domain\": \"Jason Thompson\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"google._domainkey.Jason Thompson\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"selector1._domainkey.Jason Thompson\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"selector2._domainkey.Jason Thompson\", \"query_result\": \"Query returned 1 txt records\"}], \"rdata\": [\"v=DKIM1; k=rsa; p=myfakeexamplepublickey;\"]}]", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.2.1v0.3\"", - "Prerequisites": "[\"directory/v1/domains/list\", \"get_dkim_records\"]", - "ReportDetails": "\"Requirement met.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"GmailIpWhitelistSpamFilteringProto is_empty\": \"false\"}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.14.1v0.3\"", - "ReportDetails": "\"Email allowlists are enabled in Org Name.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.9.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.11.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.12.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.13.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.15.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.5.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.5.2v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.5.3v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.5.5v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.6.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.6.2v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.6.3v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.7.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.7.2v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.7.3v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.7.4v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.7.5v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.7.6v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.8.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.1.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.16.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.5.4v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.6.4v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.7.7v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": [{\"Name\": \"Anne Mclaughlin\", \"Value\": \"Automatically enable outlook sync is set to enabled\"}]}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.10.1v0.3\"", - "ReportDetails": "\"The following OUs are non-compliant:
    • Kimberly Allen: Automatically enable outlook sync is set to enabled
    \"", - "RequirementMet": "false" - }, - { - "ActualValue": "[\"example.org\"]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GMAIL.3.1v0.3\"", - "Prerequisites": "[\"directory/v1/domains/list\", \"get_spf_records\"]", - "ReportDetails": "\"1 of 2 agency domain(s) found in violation: example.org.\"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantGroups\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GROUPS.7.1v0.3\"", - "Prerequisites": "[\"directory/v1/domains/list\", \"directory/v1/groups/list\", \"groups-settings/v1/groups/get\"]", - "ReportDetails": "\"Requirement met in all groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GROUPS.1.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GROUPS.6.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GROUPS.2.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GROUPS.3.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GROUPS.5.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"Anyone on the internet can create groups\"}]}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.GROUPS.4.1v0.3\"", - "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: Anyone on the internet can create groups
    \"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.MEET.2.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.MEET.3.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.MEET.4.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.MEET.5.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.MEET.1.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"A Super Administrator for your Google account has started exporting data from your domain.\"", - "Requirement": "\"Domain data export initiated\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"A problem has been detected with your client-side encryption service indicating an outage or misconfigured setting.\"", - "Requirement": "\"[Beta] Client-side encryption service unavailable\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"A sender has sent messages to your domain that users have classified as phishings.\"", - "Requirement": "\"User-reported phishing\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"A sender has sent messages to your domain that users have classified as spam.\"", - "Requirement": "\"Suspicious message reported\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"A suspended user is made active.\"", - "Requirement": "\"Suspended user made active\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"An admin has suspended the account.\"", - "Requirement": "\"User suspended (by admin)\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"An unusually high volume of messages from a sender that users have marked as spam.\"", - "Requirement": "\"Spike in user-reported spam\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Auto attendants and ring groups with invalid references may hang up at unexpected times.\"", - "Requirement": "\"Google Voice configuration problem\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Directory sync has been automatically cancelled and disabled as the directory sync service detected a possibility to exceed deprovisioning safeguard threshold.\"", - "Requirement": "\"Directory sync cancelled due to safeguard threshold exceeded\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Google Workspace accounts engaging in suspicious activity may have their account suspended. Google Workspace accounts must comply with the Google Workspace Terms of Service, Google Workspace for Education Terms of Service, Google Cloud Platform Terms of Service or Cloud Identity Terms of Service.\"", - "Requirement": "\"Account suspension warning\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Google detected compromised credentials requiring a reset of the user's password.\"", - "Requirement": "\"Leaked password\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Google detected suspicious activity and suspended the account.\"", - "Requirement": "\"User suspended (Google identity alert)\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Google detected suspicious activity such as spamming and suspended the account.\"", - "Requirement": "\"User suspended for spamming\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Google detected suspicious activity such as spamming through a SMTP relay service and suspended the account.\"", - "Requirement": "\"User suspended for spamming through relay\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Google detected suspicious login attempts from potential applications or computer programs.\"", - "Requirement": "\"Suspicious programmatic login\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Google suspended a user's account due to a potential compromise detected.\"", - "Requirement": "\"User suspended due to suspicious activity\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Incoming messages where a sender's name is in your Google Workspace directory, but the mail is not from your company's domains or domain aliases.\"", - "Requirement": "\"Gmail potential employee spoofing\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Messages classified as spam by Gmail filters delivered to user inboxes due to whitelisting settings in the Google Admin console that override the spam filters.\"", - "Requirement": "\"Phishing in inboxes due to bad whitelist\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Messages detected as malware post-delivery that are automatically reclassified.\"", - "Requirement": "\"Malware message detected post-delivery\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Messages detected as phishing post-delivery that are automatically reclassified.\"", - "Requirement": "\"Phishing message detected post-delivery\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Messages requiring Transport Layer Security (TLS) can't be delivered.\"", - "Requirement": "\"TLS failure\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Provides details about devices in your domain that have entered a compromised state.\"", - "Requirement": "\"Device compromised\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Provides details about security and privacy issues that affect your Google Workspace services.\"", - "Requirement": "\"Google Operations\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Provides details if device properties such as device ID, serial number, type of device, or device manufacturer are updated.\"", - "Requirement": "\"Suspicious device activity\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Warnings about potential government-backed attacks.\"", - "Requirement": "\"Government-backed attacks\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[]", - "Criticality": "\"Should\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"A high rate of incoming email indicating a potential malicious attack or misconfigured setting.\"", - "Requirement": "\"Rate limited recipient\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[]", - "Criticality": "\"Should\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"A user has been deleted from the domain.\"", - "Requirement": "\"User deleted\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[]", - "Criticality": "\"Should\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"A user has requested a Google Cloud SQL instance to be set up for use with App Maker.\"", - "Requirement": "\"App Maker Cloud SQL setup\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[]", - "Criticality": "\"Should\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Alerts about new, updated, or resolved outage on the Google Workspace Status Dashboard.\"", - "Requirement": "\"Apps outage alert\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[]", - "Criticality": "\"Should\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Alerts if a large number of messages can't be delivered to one of your smart host servers.\"", - "Requirement": "\"Smarthost failure\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[]", - "Criticality": "\"Should\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"An admin has changed Google Workspace Calendar settings.\"", - "Requirement": "\"Calendar settings changed\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[]", - "Criticality": "\"Should\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"An admin has changed Google Workspace Drive settings.\"", - "Requirement": "\"Drive settings changed\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[]", - "Criticality": "\"Should\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"An admin has changed Google Workspace Gmail settings.\"", - "Requirement": "\"Email settings changed\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[]", - "Criticality": "\"Should\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"An admin has changed mobile management settings.\"", - "Requirement": "\"Mobile settings changed\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[]", - "Criticality": "\"Should\"", - "NoSuchEvent": "true", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Failures with Exchange journaling that ensures email traffic generated by Microsoft\\u00ae Exchange server users is properly archived in Google Vault.\"", - "Requirement": "\"Exchange journaling failure\"", - "RequirementMet": "false" - }, - { - "ActualValue": "[{\"Change\": \"Status changed from OFF to ON.\", \"RuleName\": \"New user added\", \"Timestamp\": 1728680085235000000, \"TimestampStr\": \"2024-10-11T20:54:45.235Z\"}, {\"Change\": \"Status changed from ON to OFF.\", \"RuleName\": \"New user added\", \"Timestamp\": 1728680079199000000, \"TimestampStr\": \"2024-10-11T20:54:39.199Z\"}]", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"A new user has been added to the domain.\"", - "Requirement": "\"New user added\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[{\"Change\": \"Status changed from OFF to ON.\", \"RuleName\": \"User granted Admin privilege\", \"Timestamp\": 1721923271218000000, \"TimestampStr\": \"2024-07-25T16:01:11.218Z\"}, {\"Change\": \"Status changed from OFF to ON.\", \"RuleName\": \"User granted Admin privilege\", \"Timestamp\": 1728679856855000000, \"TimestampStr\": \"2024-10-11T20:50:56.855Z\"}, {\"Change\": \"Status changed from OFF to ON.\", \"RuleName\": \"User granted Admin privilege\", \"Timestamp\": 1728680000166000000, \"TimestampStr\": \"2024-10-11T20:53:20.166Z\"}, {\"Change\": \"Status changed from ON to OFF.\", \"RuleName\": \"User granted Admin privilege\", \"Timestamp\": 1721923206405000000, \"TimestampStr\": \"2024-07-25T16:00:06.405Z\"}, {\"Change\": \"Status changed from ON to OFF.\", \"RuleName\": \"User granted Admin privilege\", \"Timestamp\": 1728679851171000000, \"TimestampStr\": \"2024-10-11T20:50:51.171Z\"}, {\"Change\": \"Status changed from ON to OFF.\", \"RuleName\": \"User granted Admin privilege\", \"Timestamp\": 1728679994421000000, \"TimestampStr\": \"2024-10-11T20:53:14.421Z\"}]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"A user is granted an admin privilege.\"", - "Requirement": "\"User granted Admin privilege\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[{\"Change\": \"Status changed from OFF to ON.\", \"RuleName\": \"User's Admin privilege revoked\", \"Timestamp\": 1728680039117000000, \"TimestampStr\": \"2024-10-11T20:53:59.117Z\"}, {\"Change\": \"Status changed from ON to OFF.\", \"RuleName\": \"User's Admin privilege revoked\", \"Timestamp\": 1728680030610000000, \"TimestampStr\": \"2024-10-11T20:53:50.610Z\"}]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"A user is revoked of their admin privilege.\"", - "Requirement": "\"User's Admin privilege revoked\"", - "RequirementMet": "true" - }, - { - "ActualValue": "[{\"Change\": \"Status changed from ON to OFF.\", \"RuleName\": \"Suspicious login\", \"Timestamp\": 1728680014254000000, \"TimestampStr\": \"2024-10-11T20:53:34.254Z\"}]", - "Criticality": "\"Shall\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", - "ReportDetails": "\"Google detected a sign-in attempt that doesn't match a user's normal behavior, such as a sign-in from an unusual location.\"", - "Requirement": "\"Suspicious login\"", - "RequirementMet": "false" - }, - { - "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", - "Criticality": "\"Should\"", - "NoSuchEvent": "false", - "PolicyId": "\"GWS.SITES.1.1v0.3\"", - "ReportDetails": "\"Requirement met in all OUs and groups.\"", - "RequirementMet": "true" - } +[ + { + "ActualValue": "\"\"", + "Criticality": "\"Shall/Not-Implemented\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.CALENDAR.3.2v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"ENABLE_EWS_INTEROP\": \"false\"}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CALENDAR.3.1v0.3\"", + "ReportDetails": "\"Requirement met.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CALENDAR.1.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CALENDAR.2.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CALENDAR.4.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"SHARING_OUTSIDE_DOMAIN_FOR_SECONDARY_CALENDAR\": \"READ_WRITE_ACCESS\"}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CALENDAR.1.2v0.3\"", + "ReportDetails": "\"Requirement not met.
    Highest Level of Sharing: Share all information, and outsiders can change calendars.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Should/Not-Implemented\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.CHAT.5.1v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CHAT.1.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CHAT.1.2v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CHAT.2.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CHAT.4.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CHAT.6.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.
    WARNING: from the log events alone, it is not possible to distinguish between an OU inheriting settings from its parent and content reporting being disabled entirely. It's possible this tool classified some child OUs as compliant due to this limitation; manual check recommended for child OUs due to this edge case.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CHAT.3.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CHAT.6.2v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CLASSROOM.1.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CLASSROOM.1.2v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CLASSROOM.2.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CLASSROOM.4.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CLASSROOM.5.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.CLASSROOM.3.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Shall/Not-Implemented\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Results for GWS.COMMONCONTROLS.13 are listed in the Rules Report.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Shall/Not-Implemented\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.14.1v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Shall/Not-Implemented\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.14.2v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Shall/Not-Implemented\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.15.1v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Shall/Not-Implemented\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.6.1v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Shall/Not-Implemented\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.7.1v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Shall/Not-Implemented\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.9.1v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Should/Not-Implemented\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.9.2v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"No relevant event for the top-level OU in the current logs\"", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.1.1v0.3\"", + "ReportDetails": "\"No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"No relevant event for the top-level OU in the current logs\"", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.10.3v0.3\"", + "ReportDetails": "\"No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"No relevant event for the top-level OU in the current logs\"", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.10.4v0.3\"", + "ReportDetails": "\"No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"No relevant event for the top-level OU in the current logs\"", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.12.1v0.3\"", + "ReportDetails": "\"No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is non-compliant; manual check recommended.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"No relevant event for the top-level OU in the current logs\"", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.15.2v0.3\"", + "ReportDetails": "\"No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is compliant; manual check recommended.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "\"No relevant event for the top-level OU in the current logs\"", + "Criticality": "\"Should\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.11.2v0.3\"", + "ReportDetails": "\"No relevant event in the current logs for the top-level OU, Org Name. While we are unable to determine the state from the logs, the default setting is compliant; manual check recommended.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.1.4v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.8.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"New user enrollment period is set to 6 months\"}]}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.1.2v0.3\"", + "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: New user enrollment period is set to 6 months
    \"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"Users can install and run any internal app, even if it's not allowlisted\"}]}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.11.1v0.3\"", + "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: Users can install and run any internal app, even if it's not allowlisted
    \"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [{\"Name\": \"cgray@example.net\", \"Value\": \"Allow user to trust the device is ON\"}], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.1.3v0.3\"", + "ReportDetails": "\"The following groups are non-compliant:
    • ihicks@example.org: Allow user to trust the device is ON
    \"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.3.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.4.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.5.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.5.2v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.5.4v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.5.5v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.16.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"Enforce password policy at next sign-in is OFF\"}]}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.5.3v0.3\"", + "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: Enforce password policy at next sign-in is OFF
    \"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"Require multi party approval for sensitive admin actions is DISABLED\"}]}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.17.1v0.3\"", + "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: Require multi party approval for sensitive admin actions is DISABLED
    \"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"TOGGLE_CAA_ENABLEMENT\": \"ENABLED\"}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.2.1v0.3\"", + "ReportDetails": "\"Requirement met.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[\"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\", \"handerson@example.net\"]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.6.2v0.3\"", + "Prerequisites": "[\"directory/v1/users/list\"]", + "ReportDetails": "\"The following super admins are configured: michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org, michael42@example.org. Note: Exceptions are allowed for \\\"break glass\\\" super admin accounts, though we are not able to account for this automatically.\"", + "RequirementMet": "false" + }, + { + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.10.1v0.3\"", + "ReportDetails": "\"Requirement met.\"", + "RequirementMet": "true" + }, + { + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.10.2v0.3\"", + "ReportDetails": "\"Requirement met.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Should/Not-Implemented\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.DRIVEDOCS.7.1v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.1.3v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.1.4v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.1.5v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.1.6v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.1.7v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.1.8v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.1.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.1.2v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.2.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": [{\"Name\": \"Kimberly Keller DDS\", \"Value\": \"Drive SDK is enabled\"}]}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.4.1v0.3\"", + "ReportDetails": "\"The following OUs are non-compliant:
    • Jamie Martin: Drive SDK is enabled
    \"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"People who aren't shared drive members can be added to files\"}]}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.2.3v0.3\"", + "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: People who aren't shared drive members can be added to files
    \"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"Users can install Google Docs add-ons from add-ons store.\"}]}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.5.1v0.3\"", + "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: Users can install Google Docs add-ons from add-ons store.
    \"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"Users outside the organization can access files in shared drives\"}]}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.2.2v0.3\"", + "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: Users outside the organization can access files in shared drives
    \"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"Viewers and commenters are allowed to download, print, and copy files\"}]}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.2.4v0.3\"", + "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: Viewers and commenters are allowed to download, print, and copy files
    \"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [{\"Name\": \"moorekimberly@example.net\", \"Value\": \"Drive for Desktop is enabled and can be used on any device.\"}, {\"Name\": \"moorekimberly@example.net\", \"Value\": \"Drive for Desktop is enabled and can be used on any device.\"}, {\"Name\": \"moorekimberly@example.net\", \"Value\": \"Drive for Desktop is enabled and can be used on any device.\"}], \"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.6.1v0.3\"", + "ReportDetails": "\"The following groups are non-compliant:
    • erika07@example.net: Drive for Desktop is enabled and can be used on any device.
    • erika07@example.net: Drive for Desktop is enabled and can be used on any device.
    • erika07@example.net: Drive for Desktop is enabled and can be used on any device.
    \"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.DRIVEDOCS.3.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"May/Not-Implemented\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.10.2v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Shall/Not-Implemented\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.18.3v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Shall/Not-Implemented\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.19.1v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Shall/Not-Implemented\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.19.2v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Shall/Not-Implemented\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.19.3v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Should/Not-Implemented\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.15.2v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Should/Not-Implemented\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.16.2v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Should/Not-Implemented\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.17.1v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Should/Not-Implemented\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.18.1v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Should/Not-Implemented\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.18.2v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Should/Not-Implemented\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.5.6v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please check manually.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Should/Not-Implemented\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.6.5v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "\"\"", + "Criticality": "\"Should/Not-Implemented\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.7.8v0.3\"", + "ReportDetails": "\"Currently not able to be tested automatically; please manually check.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[{\"domain\": \"example.org\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}], \"rdata\": []}, {\"domain\": \"Leslie Humphrey\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.Leslie Humphrey\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.gov\", \"query_result\": \"Query returned 1 txt records\"}], \"rdata\": [\"v=DMARC1; p=reject; pct=100; rua=mailto:alexander67@example.com, mailto:alexander67@example.com\"]}]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.4.1v0.3\"", + "Prerequisites": "[\"directory/v1/domains/list\", \"get_dmarc_records\"]", + "ReportDetails": "\"1 of 2 agency domain(s) found in violation: example.org.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[{\"domain\": \"example.org\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}], \"rdata\": []}, {\"domain\": \"Amanda Berg\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.Amanda Berg\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.gov\", \"query_result\": \"Query returned 1 txt records\"}], \"rdata\": [\"v=DMARC1; p=reject; pct=100; rua=mailto:sampsonamy@example.net, mailto:sampsonamy@example.net\"]}]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.4.2v0.3\"", + "Prerequisites": "[\"directory/v1/domains/list\", \"get_dmarc_records\"]", + "ReportDetails": "\"1 of 2 agency domain(s) found in violation: example.org.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[{\"domain\": \"example.org\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}], \"rdata\": []}, {\"domain\": \"Jason Rodriguez\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.Jason Rodriguez\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.gov\", \"query_result\": \"Query returned 1 txt records\"}], \"rdata\": [\"v=DMARC1; p=reject; pct=100; rua=mailto:cervantesmary@example.com, mailto:cervantesmary@example.com\"]}]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.4.3v0.3\"", + "Prerequisites": "[\"directory/v1/domains/list\", \"get_dmarc_records\"]", + "ReportDetails": "\"1 of 2 agency domain(s) found in violation: example.org.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[{\"domain\": \"example.org\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.org\", \"query_result\": \"Query returned NXDOMAIN\"}], \"rdata\": []}, {\"domain\": \"Rebecca Hughes\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"_dmarc.Rebecca Hughes\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"_dmarc.example.gov\", \"query_result\": \"Query returned 1 txt records\"}], \"rdata\": [\"v=DMARC1; p=reject; pct=100; rua=mailto:qdavis@example.com, mailto:qdavis@example.com\"]}]", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.4.4v0.3\"", + "Prerequisites": "[\"directory/v1/domains/list\", \"get_dmarc_records\"]", + "ReportDetails": "\"1 of 2 agency domain(s) found in violation: example.org.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[{\"domain\": \"example.org\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"google._domainkey.example.org\", \"query_result\": \"Query returned 1 txt records\"}], \"rdata\": [\"v=DKIM1; k=rsa; p=myfakeexamplepublickey\"]}, {\"domain\": \"Jason Thompson\", \"log\": [{\"query_method\": \"traditional\", \"query_name\": \"google._domainkey.Jason Thompson\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"selector1._domainkey.Jason Thompson\", \"query_result\": \"Query returned NXDOMAIN\"}, {\"query_method\": \"traditional\", \"query_name\": \"selector2._domainkey.Jason Thompson\", \"query_result\": \"Query returned 1 txt records\"}], \"rdata\": [\"v=DKIM1; k=rsa; p=myfakeexamplepublickey;\"]}]", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.2.1v0.3\"", + "Prerequisites": "[\"directory/v1/domains/list\", \"get_dkim_records\"]", + "ReportDetails": "\"Requirement met.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"GmailIpWhitelistSpamFilteringProto is_empty\": \"false\"}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.14.1v0.3\"", + "ReportDetails": "\"Email allowlists are enabled in Org Name.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.9.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.11.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.12.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.13.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.15.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.5.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.5.2v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.5.3v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.5.5v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.6.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.6.2v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.6.3v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.7.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.7.2v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.7.3v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.7.4v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.7.5v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.7.6v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.8.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.1.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.16.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.5.4v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.6.4v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.7.7v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": [{\"Name\": \"Anne Mclaughlin\", \"Value\": \"Automatically enable outlook sync is set to enabled\"}]}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.10.1v0.3\"", + "ReportDetails": "\"The following OUs are non-compliant:
    • Kimberly Allen: Automatically enable outlook sync is set to enabled
    \"", + "RequirementMet": "false" + }, + { + "ActualValue": "[\"example.org\"]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GMAIL.3.1v0.3\"", + "Prerequisites": "[\"directory/v1/domains/list\", \"get_spf_records\"]", + "ReportDetails": "\"1 of 2 agency domain(s) found in violation: example.org.\"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantGroups\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GROUPS.7.1v0.3\"", + "Prerequisites": "[\"directory/v1/domains/list\", \"directory/v1/groups/list\", \"groups-settings/v1/groups/get\"]", + "ReportDetails": "\"Requirement met in all groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GROUPS.1.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GROUPS.6.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GROUPS.2.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GROUPS.3.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GROUPS.5.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantOUs\": [{\"Name\": \"Org Name\", \"Value\": \"Anyone on the internet can create groups\"}]}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.GROUPS.4.1v0.3\"", + "ReportDetails": "\"The following OUs are non-compliant:
    • Org Name: Anyone on the internet can create groups
    \"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.MEET.2.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.MEET.3.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.MEET.4.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.MEET.5.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.MEET.1.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"A Super Administrator for your Google account has started exporting data from your domain.\"", + "Requirement": "\"Domain data export initiated\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"A problem has been detected with your client-side encryption service indicating an outage or misconfigured setting.\"", + "Requirement": "\"[Beta] Client-side encryption service unavailable\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"A sender has sent messages to your domain that users have classified as phishings.\"", + "Requirement": "\"User-reported phishing\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"A sender has sent messages to your domain that users have classified as spam.\"", + "Requirement": "\"Suspicious message reported\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"A suspended user is made active.\"", + "Requirement": "\"Suspended user made active\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"An admin has suspended the account.\"", + "Requirement": "\"User suspended (by admin)\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"An unusually high volume of messages from a sender that users have marked as spam.\"", + "Requirement": "\"Spike in user-reported spam\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Auto attendants and ring groups with invalid references may hang up at unexpected times.\"", + "Requirement": "\"Google Voice configuration problem\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Directory sync has been automatically cancelled and disabled as the directory sync service detected a possibility to exceed deprovisioning safeguard threshold.\"", + "Requirement": "\"Directory sync cancelled due to safeguard threshold exceeded\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Google Workspace accounts engaging in suspicious activity may have their account suspended. Google Workspace accounts must comply with the Google Workspace Terms of Service, Google Workspace for Education Terms of Service, Google Cloud Platform Terms of Service or Cloud Identity Terms of Service.\"", + "Requirement": "\"Account suspension warning\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Google detected compromised credentials requiring a reset of the user's password.\"", + "Requirement": "\"Leaked password\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Google detected suspicious activity and suspended the account.\"", + "Requirement": "\"User suspended (Google identity alert)\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Google detected suspicious activity such as spamming and suspended the account.\"", + "Requirement": "\"User suspended for spamming\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Google detected suspicious activity such as spamming through a SMTP relay service and suspended the account.\"", + "Requirement": "\"User suspended for spamming through relay\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Google detected suspicious login attempts from potential applications or computer programs.\"", + "Requirement": "\"Suspicious programmatic login\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Google suspended a user's account due to a potential compromise detected.\"", + "Requirement": "\"User suspended due to suspicious activity\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Incoming messages where a sender's name is in your Google Workspace directory, but the mail is not from your company's domains or domain aliases.\"", + "Requirement": "\"Gmail potential employee spoofing\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Messages classified as spam by Gmail filters delivered to user inboxes due to whitelisting settings in the Google Admin console that override the spam filters.\"", + "Requirement": "\"Phishing in inboxes due to bad whitelist\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Messages detected as malware post-delivery that are automatically reclassified.\"", + "Requirement": "\"Malware message detected post-delivery\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Messages detected as phishing post-delivery that are automatically reclassified.\"", + "Requirement": "\"Phishing message detected post-delivery\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Messages requiring Transport Layer Security (TLS) can't be delivered.\"", + "Requirement": "\"TLS failure\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Provides details about devices in your domain that have entered a compromised state.\"", + "Requirement": "\"Device compromised\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Provides details about security and privacy issues that affect your Google Workspace services.\"", + "Requirement": "\"Google Operations\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Provides details if device properties such as device ID, serial number, type of device, or device manufacturer are updated.\"", + "Requirement": "\"Suspicious device activity\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Warnings about potential government-backed attacks.\"", + "Requirement": "\"Government-backed attacks\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[]", + "Criticality": "\"Should\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"A high rate of incoming email indicating a potential malicious attack or misconfigured setting.\"", + "Requirement": "\"Rate limited recipient\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[]", + "Criticality": "\"Should\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"A user has been deleted from the domain.\"", + "Requirement": "\"User deleted\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[]", + "Criticality": "\"Should\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"A user has requested a Google Cloud SQL instance to be set up for use with App Maker.\"", + "Requirement": "\"App Maker Cloud SQL setup\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[]", + "Criticality": "\"Should\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Alerts about new, updated, or resolved outage on the Google Workspace Status Dashboard.\"", + "Requirement": "\"Apps outage alert\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[]", + "Criticality": "\"Should\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Alerts if a large number of messages can't be delivered to one of your smart host servers.\"", + "Requirement": "\"Smarthost failure\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[]", + "Criticality": "\"Should\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"An admin has changed Google Workspace Calendar settings.\"", + "Requirement": "\"Calendar settings changed\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[]", + "Criticality": "\"Should\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"An admin has changed Google Workspace Drive settings.\"", + "Requirement": "\"Drive settings changed\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[]", + "Criticality": "\"Should\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"An admin has changed Google Workspace Gmail settings.\"", + "Requirement": "\"Email settings changed\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[]", + "Criticality": "\"Should\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"An admin has changed mobile management settings.\"", + "Requirement": "\"Mobile settings changed\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[]", + "Criticality": "\"Should\"", + "NoSuchEvent": "true", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Failures with Exchange journaling that ensures email traffic generated by Microsoft\\u00ae Exchange server users is properly archived in Google Vault.\"", + "Requirement": "\"Exchange journaling failure\"", + "RequirementMet": "false" + }, + { + "ActualValue": "[{\"Change\": \"Status changed from OFF to ON.\", \"RuleName\": \"New user added\", \"Timestamp\": 1728680085235000000, \"TimestampStr\": \"2024-10-11T20:54:45.235Z\"}, {\"Change\": \"Status changed from ON to OFF.\", \"RuleName\": \"New user added\", \"Timestamp\": 1728680079199000000, \"TimestampStr\": \"2024-10-11T20:54:39.199Z\"}]", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"A new user has been added to the domain.\"", + "Requirement": "\"New user added\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[{\"Change\": \"Status changed from OFF to ON.\", \"RuleName\": \"User granted Admin privilege\", \"Timestamp\": 1721923271218000000, \"TimestampStr\": \"2024-07-25T16:01:11.218Z\"}, {\"Change\": \"Status changed from OFF to ON.\", \"RuleName\": \"User granted Admin privilege\", \"Timestamp\": 1728679856855000000, \"TimestampStr\": \"2024-10-11T20:50:56.855Z\"}, {\"Change\": \"Status changed from OFF to ON.\", \"RuleName\": \"User granted Admin privilege\", \"Timestamp\": 1728680000166000000, \"TimestampStr\": \"2024-10-11T20:53:20.166Z\"}, {\"Change\": \"Status changed from ON to OFF.\", \"RuleName\": \"User granted Admin privilege\", \"Timestamp\": 1721923206405000000, \"TimestampStr\": \"2024-07-25T16:00:06.405Z\"}, {\"Change\": \"Status changed from ON to OFF.\", \"RuleName\": \"User granted Admin privilege\", \"Timestamp\": 1728679851171000000, \"TimestampStr\": \"2024-10-11T20:50:51.171Z\"}, {\"Change\": \"Status changed from ON to OFF.\", \"RuleName\": \"User granted Admin privilege\", \"Timestamp\": 1728679994421000000, \"TimestampStr\": \"2024-10-11T20:53:14.421Z\"}]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"A user is granted an admin privilege.\"", + "Requirement": "\"User granted Admin privilege\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[{\"Change\": \"Status changed from OFF to ON.\", \"RuleName\": \"User's Admin privilege revoked\", \"Timestamp\": 1728680039117000000, \"TimestampStr\": \"2024-10-11T20:53:59.117Z\"}, {\"Change\": \"Status changed from ON to OFF.\", \"RuleName\": \"User's Admin privilege revoked\", \"Timestamp\": 1728680030610000000, \"TimestampStr\": \"2024-10-11T20:53:50.610Z\"}]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"A user is revoked of their admin privilege.\"", + "Requirement": "\"User's Admin privilege revoked\"", + "RequirementMet": "true" + }, + { + "ActualValue": "[{\"Change\": \"Status changed from ON to OFF.\", \"RuleName\": \"Suspicious login\", \"Timestamp\": 1728680014254000000, \"TimestampStr\": \"2024-10-11T20:53:34.254Z\"}]", + "Criticality": "\"Shall\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.COMMONCONTROLS.13.1v0.3\"", + "ReportDetails": "\"Google detected a sign-in attempt that doesn't match a user's normal behavior, such as a sign-in from an unusual location.\"", + "Requirement": "\"Suspicious login\"", + "RequirementMet": "false" + }, + { + "ActualValue": "{\"NonCompliantGroups\": [], \"NonCompliantOUs\": []}", + "Criticality": "\"Should\"", + "NoSuchEvent": "false", + "PolicyId": "\"GWS.SITES.1.1v0.3\"", + "ReportDetails": "\"Requirement met in all OUs and groups.\"", + "RequirementMet": "true" + } ] \ No newline at end of file diff --git a/scubagoggles/scuba_argument_parser.py b/scubagoggles/scuba_argument_parser.py index 8bb7732d..0c4d139d 100644 --- a/scubagoggles/scuba_argument_parser.py +++ b/scubagoggles/scuba_argument_parser.py @@ -1,137 +1,185 @@ -""" -Class for parsing the config file and command-line arguments. -""" - -import warnings -import argparse -from pathlib import Path - -import yaml -from scubagoggles.orchestrator import Orchestrator -from scubagoggles.reporter.md_parser import read_baseline_docs - -class ScubaArgumentParser: - """ - Class for parsing the config file and command-line arguments. - """ - - # Create a mapping of the long form of parameters to their short aliases - _param_to_alias = { - "baselines": "b", - "outputpath": "o", - "credentials": "c" - } - - def __init__(self, parser): - self.parser = parser - - def parse_args(self) -> argparse.Namespace: - """ - Parse the arguments without loading config file. - """ - return self.parser.parse_args() - - def parse_args_with_config(self) -> argparse.Namespace: - """ - Parse the arguments and the config file, if provided, resolving any - differences between the two. - """ - args = self.parse_args() - - # Create a mapping of the short param aliases to the long form - alias_to_param = { - value: key for key, value in self._param_to_alias.items() - } - - # Get the args explicitly specified on the command-line so we know - # what should override the config file - cli_args = self._get_explicit_cli_args(args) - - # If a config file is not specified, just return the args unchanged. - if args.config is not None: - with open(args.config, 'r', encoding="utf-8") as f: - config = yaml.safe_load(f) - config_params = list(config) - for param in config_params: - # If the short form of a param was provided in the config, - # translate it to the long form - if param in alias_to_param: - config[alias_to_param[param]] = config[param] - param = alias_to_param[param] - # If the param was specified in the command-line, the - # command-line arg takes precedence - if param in cli_args: - continue - vars(args)[param] = config[param] - - # Check for logical errors in the resulting configuration - self.validate_config(args) - - # Return the args (argparse.Namespace) - return args - - @classmethod - def _get_explicit_cli_args(cls, args : argparse.Namespace) -> dict: - """ - Return the list of arguments that were explicitly specified on the - command-line. - """ - # Build a secondary parser, configure the secondary parser to - # suppress the default values so the secondary parser will only - # contain the values explicitly specified on the command-line. - aux_parser = argparse.ArgumentParser(argument_default=argparse.SUPPRESS) - for arg, val in vars(args).items(): - dests = [f"--{arg}"] - # If the arg has a short form alias, add the short form as well - if arg in cls._param_to_alias: - dests.append(f"-{cls._param_to_alias[arg]}") - # If the arg is a boolean, need to specify the store action - # otherwise the boolean args will cause an error - if isinstance(val, bool): - aux_parser.add_argument(*dests, action="store_false") - else: - aux_parser.add_argument(*dests) - cli_args, _ = aux_parser.parse_known_args() - return cli_args - - @staticmethod - def validate_config(args : argparse.Namespace) -> None: - """ - Check for an logical errors in the advanced ScubaGoggles configuration - options. NOTE: "omitpolicy" is the only such option for now; more to - come. - """ - if 'omitpolicy' in args: - ScubaArgumentParser.validate_omissions(args) - - @staticmethod - def validate_omissions(args : argparse.Namespace) -> None: - """ - Warn for any control IDs configured for omission that aren't in the - set of IDs covered by the baselines specificied in --baselines. - """ - products = Orchestrator.gws_products()['prod_to_fullname'] - prod_to_fullname = { - key: products[key] - for key in args.baselines - if key in products - } - - # Parse the baselines to determine the set of valid control IDs - path = Path(args.documentpath).resolve() - baseline_policies = read_baseline_docs(path, prod_to_fullname) - control_ids = set() - for product_baseline in baseline_policies.values(): - for group in product_baseline: - for control in group['Controls']: - control_ids.add(control['Id'].lower()) - - # Warn for any unexpected IDs - for control_id in args.omitpolicy: - if control_id.lower() not in control_ids: - warnings.warn("Config file indicates omitting " \ - f"{control_id}, but {control_id} is not one of the " \ - "controls encompassed by the baselines indicated " \ - "by the baselines parameter. Control " \ - - "will not be omitted.") +""" +Class for parsing the config file and command-line arguments. +""" + +import argparse +import re +import warnings + +from pathlib import Path + +import yaml + +from scubagoggles.reporter.md_parser import MarkdownParser +from scubagoggles.utils import path_parser +from scubagoggles.version import Version + + +class ScubaArgumentParser: + """ + Class for parsing the config file and command-line arguments. + """ + + # Create a mapping of the long form of parameters to their short aliases + _param_to_alias = { + 'baselines': 'b', + 'outputpath': 'o', + 'credentials': 'c' + } + + def __init__(self, parser): + self.parser = parser + + def parse_args(self) -> argparse.Namespace: + """ + Parse the arguments without loading config file. + """ + return self.parser.parse_args() + + def parse_args_with_config(self) -> argparse.Namespace: + """ + Parse the arguments and the config file, if provided, resolving any + differences between the two. + """ + args = self.parse_args() + + if not 'config' in args or not args.config: + return args + + # Create a mapping of the short param aliases to the long form + alias_to_param = { + value: key for key, value in self._param_to_alias.items() + } + + # Get the args explicitly specified on the command-line so we know + # what should override the config file + cli_args = self._get_explicit_cli_args(args) + + with open(args.config, 'r', encoding='utf-8') as f: + config = yaml.safe_load(f) + config_params = list(config) + for param in config_params: + # If the short form of a param was provided in the config, + # translate it to the long form + if param in alias_to_param: + config[alias_to_param[param]] = config[param] + param = alias_to_param[param] + # If the param was specified in the command-line, the + # command-line arg takes precedence + if param in cli_args: + continue + vars(args)[param] = config[param] + + self.fix_omit_ids(args) + + # Check for logical errors in the resulting configuration + self.validate_config(args) + + # Return the args (argparse.Namespace) + return args + + @classmethod + def _get_explicit_cli_args(cls, args : argparse.Namespace) -> dict: + """ + Return the list of arguments that were explicitly specified on the + command-line. + """ + # Build a secondary parser, configure the secondary parser to + # suppress the default values so the secondary parser will only + # contain the values explicitly specified on the command-line. + aux_parser = argparse.ArgumentParser(argument_default=argparse.SUPPRESS) + for arg, val in vars(args).items(): + dests = [f'--{arg}'] + # If the arg has a short form alias, add the short form as well + if arg in cls._param_to_alias: + dests.append(f'-{cls._param_to_alias[arg]}') + # If the arg is a boolean, need to specify the store action + # otherwise the boolean args will cause an error + if isinstance(val, bool): + aux_parser.add_argument(*dests, action='store_false') + else: + aux_parser.add_argument(*dests) + cli_args, _ = aux_parser.parse_known_args() + return cli_args + + @staticmethod + def fix_omit_ids(args : argparse.Namespace) -> None: + + """If there are policy ids specified to be omitted, make sure they + have the correct version suffix so they can be correctly compared + with the current release's policy ids. + """ + + if 'omitpolicy' not in args: + return + + version_suffix_re = re.compile(r'v\d+\.\d+$') + + omit_policies = args.omitpolicy + + policy_id_map = {} + + for policy_id in omit_policies: + new_id = (version_suffix_re.sub('', policy_id).upper() + + Version.suffix) + policy_id_map[policy_id] = new_id + + args.omitpolicy = {new_id: omit_policies[old_id] + for old_id, new_id in policy_id_map.items()} + + return + + @staticmethod + def validate_config(args : argparse.Namespace) -> None: + """ + Check for an logical errors in the advanced ScubaGoggles configuration + options. + """ + + # Options read in from the configuration file must be converted to the + # same data type that's defined in the corresponding command parser + # definition (see the main module). The following option values are + # read as strings but are converted to Path. + + path_value_options = ('credentials', + 'documentpath', + 'opapath', + 'outputpath', + 'regopath') + + for option_name in path_value_options: + if option_name in args: + option_value = getattr(args, option_name) + if not isinstance(option_value, Path): + setattr(args, option_name, path_parser(option_value)) + + if 'omitpolicy' in args: + ScubaArgumentParser.validate_omissions(args) + + @staticmethod + def validate_omissions(args : argparse.Namespace) -> None: + """ + Warn for any control IDs configured for omission that aren't in the + set of IDs covered by the baselines specificied in --baselines. + """ + + md_products = set(args.baselines) - {'rules'} + + # Parse the baselines to determine the set of valid control IDs + md_parser = MarkdownParser(args.documentpath) + baseline_policies = md_parser.parse_baselines(md_products) + + control_ids = set() + for product_baseline in baseline_policies.values(): + for group in product_baseline: + for control in group['Controls']: + control_ids.add(control['Id'].lower()) + + # Warn for any unexpected IDs + for control_id in args.omitpolicy: + if control_id.lower() not in control_ids: + warnings.warn('Config file indicates omitting ' + f'{control_id}, but {control_id} is not one ' + 'of the controls encompassed by the baselines ' + 'indicated by the baselines parameter. Control ' + 'will not be omitted.') diff --git a/scubagoggles/scuba_constants.py b/scubagoggles/scuba_constants.py index 675805b6..5ce87d4c 100644 --- a/scubagoggles/scuba_constants.py +++ b/scubagoggles/scuba_constants.py @@ -1,35 +1,35 @@ -""" -api_reference.py is where short-hand references and full URLs to the GWS api calls are maintained. - -""" - -from enum import Enum - -BASE_URL = "https://developers.google.com/admin-sdk" - -class ApiReference(Enum): - ''' - Enum for mapping code-friendly names of the various API calls to their short-hand reference - ''' - LIST_USERS = "directory/v1/users/list" - LIST_OUS = "directory/v1/orgunits/list" - LIST_DOMAINS = "directory/v1/domains/list" - LIST_GROUPS = "directory/v1/groups/list" - LIST_ACTIVITIES = "reports/v1/activities/list" - GET_GROUP = "groups-settings/v1/groups/get" - -class ApiUrl(Enum): - ''' - Enum for mapping code-friendly names of the various API calls to their documentation URLs - ''' - LIST_USERS = f"{BASE_URL}/directory/reference/rest/v1/users/list" - LIST_OUS = f"{BASE_URL}/directory/reference/rest/v1/orgunits/list" - LIST_DOMAINS = f"{BASE_URL}/directory/reference/rest/v1/domains/list" - LIST_GROUPS = f"{BASE_URL}/directory/reference/rest/v1/groups/list" - LIST_ACTIVITIES = f"{BASE_URL}/reports/reference/rest/v1/activities/list" - GET_GROUP = f"{BASE_URL}/groups-settings/v1/reference/groups/get" - -# Dictionary mapping short-hand reference to tags linking to the documentation -API_LINKS = { - api.value: f'{api.value}' for api in ApiReference -} +""" +api_reference.py is where short-hand references and full URLs to the GWS api calls are maintained. + +""" + +from enum import Enum + +BASE_URL = 'https://developers.google.com/admin-sdk' + +class ApiReference(Enum): + ''' + Enum for mapping code-friendly names of the various API calls to their short-hand reference + ''' + LIST_USERS = 'directory/v1/users/list' + LIST_OUS = 'directory/v1/orgunits/list' + LIST_DOMAINS = 'directory/v1/domains/list' + LIST_GROUPS = 'directory/v1/groups/list' + LIST_ACTIVITIES = 'reports/v1/activities/list' + GET_GROUP = 'groups-settings/v1/groups/get' + +class ApiUrl(Enum): + ''' + Enum for mapping code-friendly names of the various API calls to their documentation URLs + ''' + LIST_USERS = f'{BASE_URL}/directory/reference/rest/v1/users/list' + LIST_OUS = f'{BASE_URL}/directory/reference/rest/v1/orgunits/list' + LIST_DOMAINS = f'{BASE_URL}/directory/reference/rest/v1/domains/list' + LIST_GROUPS = f'{BASE_URL}/directory/reference/rest/v1/groups/list' + LIST_ACTIVITIES = f'{BASE_URL}/reports/reference/rest/v1/activities/list' + GET_GROUP = f'{BASE_URL}/groups-settings/v1/reference/groups/get' + +# Dictionary mapping short-hand reference to tags linking to the documentation +API_LINKS = { + api.value: f'{api.value}' for api in ApiReference +} diff --git a/scubagoggles/user_setup.py b/scubagoggles/user_setup.py new file mode 100644 index 00000000..db502f25 --- /dev/null +++ b/scubagoggles/user_setup.py @@ -0,0 +1,444 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +"""Implementation of one-time user setup (output directory, credentials file +location, etc.). +""" + +import argparse +import logging +import os + +from collections import namedtuple +from pathlib import Path + +from scubagoggles.getopa import download_opa, opa_filespec +from scubagoggles.run_rego import find_opa +from scubagoggles.utils import prompt_boolean, prompt_string + +log = logging.getLogger(__name__) + +# These are default names for files/folders, and this was originally defined +# in main.py. Because the names may be referenced elsewhere in the code, to +# avoid hard-coding the names the defaults may be referenced here. Perhaps +# they could be defined in a separate file, but I supposed this is as good +# a place as any (except main.py) to define them. + +Defaults = namedtuple('Defaults', + ['json_output_name', + 'output_folder_name', + 'provider_output_name', + 'rego_output_name', + 'report_output_name']) + + +default_file_names = Defaults(json_output_name = 'ScubaResults', + output_folder_name = 'GWSBaselineConformance', + provider_output_name = 'ProviderSettingsExport', + rego_output_name = 'TestResults', + report_output_name = 'BaselineReports') + + +def user_setup(arguments: argparse.Namespace): + + """Main user setup function - this calls other functions in this module. + If the user makes any setting changes, this will result in writing a + user configuration file in the top-level user directory. + + :param arguments: arguments collected by the ArgumentParser. + """ + + config = arguments.user_config + + config.path_check = False + + modified = user_directory(arguments) + + modified |= opa_directory(arguments) + + modified |= credentials_file(arguments) + + if modified: + config.write() + + +def user_directory(arguments: argparse.Namespace): + + """Sets the user's directory for Scubagoggles output files. + + :param arguments: arguments collected by the ArgumentParser. + + :return: True if the output directory was changed in the user's + configuration; False otherwise. + """ + + # Gimme a break... + # pylint: disable=too-many-branches + + print('Setup: output directory') + + config = arguments.user_config + create_dir = arguments.mkdir + prompt = not arguments.noprompt + user_dir = arguments.work_directory + + if user_dir: + + # The user has explicitly specified an output directory to be used. + # We only need to check whether the directory already exists, and + # confirm with the user to create it if it doesn't. + + user_dir = user_dir.resolve() + + if not user_dir.exists(): + answer = (create_dir or (prompt + and prompt_boolean(f'Create directory {user_dir}'))) + + if answer: + print(f' creating: {user_dir}') + user_dir.mkdir(exist_ok = True) + else: + print(f' specified directory: {user_dir}') + + config.output_dir = user_dir + + return True + + if not config.file_exists: + + # The user has no configuration file, so they're starting from scratch. + # First, determine if this may be a "legacy" setup, where the user + # has the Scubagoggles installation in their own directory (as opposed + # to the Python "site packages" directory) and the output data and + # credentials are mixed in with the code hierarchy. If the user has + # their environment set up this way, we don't want to force them into + # a different configuration unless we can't find their "legacy" files. + + legacy_dir = find_legacy_dir(config) + + user_dir = legacy_dir or config.output_dir + + # Confirm with the user that this is the output directory they want + # to use. The user is also asked whether the directory should be + # created if it doesn't exist. We don't exit the loop until we + # have a valid directory. Because the user hasn't entered any + # directory, we're forced to prompt (ignoring --noprompt). + + verified = False + + while not verified: + answer = prompt_string('Scubagoggles output directory', user_dir) + + if not answer: + continue + + user_dir = Path(os.path.expandvars(answer)).expanduser() + + if not user_dir.exists(): + answer = (create_dir + or prompt_boolean(f'Create directory {user_dir}')) + if answer: + print(f' creating: {user_dir}') + user_dir.mkdir(exist_ok = True) + + verified = user_dir.is_dir() + + user_dir = user_dir.resolve() + + print(f' {user_dir}') + + if (not config.output_dir.exists() + or not user_dir.samefile(config.output_dir)): + config.output_dir = user_dir + + return True + + return False + + # At this point, the user has an existing Scubagoggles configuration + # file. We don't need to do anything other than ask to create the + # directory if it doesn't exist, but we don't change the directory set + # in the configuration file. + + user_dir = config.output_dir + + if not user_dir.exists(): + answer = create_dir or prompt_boolean(f'Create directory {user_dir}') + if answer: + print(f' creating: {user_dir}') + user_dir.mkdir(exist_ok = True) + else: + print(f' {user_dir}') + + return False + + +def opa_directory(arguments: argparse.Namespace): + + """Sets the user's directory where the OPA executable is located. The + best location for the OPA executable is in one of the directories included + in the user's PATH environment variable, but the user may also explicitly + specify a location. + + :param arguments: arguments collected by the ArgumentParser. + + :return: True if the OPA executable directory was changed in the user's + configuration; False otherwise. + """ + + print('Setup: OPA executable directory') + + check = not arguments.nocheck + config = arguments.user_config + create_dir = arguments.mkdir + download = not arguments.nodownload and check + opa_dir = arguments.opa_directory + + if opa_dir: + + # The user has explicitly specified the OPA executable directory. + # We only need to check whether the OPA executable is indeed in that + # location. + + create_dir_download_opa(opa_dir, create_dir, download) + + if check: + validate_opa_dir(opa_dir) + else: + print(f' {opa_dir}') + + config.opa_dir = opa_dir.resolve() + + return True + + if config.file_exists and config.opa_dir: + + # The user has established a configuration file and includes the OPA + # executable directory. We just validate the directory and don't + # change anything. + + create_dir_download_opa(config.opa_dir, create_dir, download) + + if check: + validate_opa_dir(config.opa_dir) + else: + print(f' {config.opa_dir}') + + return False + + # Either the user has no configuration file or the OPA executable directory + # isn't specified in the configuration. The OPA executable will hopefully + # be located on the user's PATH, in which case there's nothing to do. + + if validate_opa_dir(): + return False + + # There's no OPA executable directory defined, and we haven't found the + # executable in the User's PATH, so we have to ask for the location. Suggest + # the output directory as the default location. Because the user hasn't + # entered any directory, we're forced to prompt (ignoring --noprompt). + + default_dir = config.output_dir + while not opa_dir: + answer = prompt_string('Location of OPA executable', default_dir) + + if not answer: + continue + + answer = Path(os.path.expandvars(answer)).expanduser().absolute() + + if not answer.exists(): + create_dir |= prompt_boolean(f'Create directory {answer}') + + create_dir_download_opa(answer, create_dir, download) + + if validate_opa_dir(answer) or answer.is_dir(): + opa_dir = answer + + config.opa_dir = opa_dir.resolve() + + return True + + +def create_dir_download_opa(opa_dir: Path, create_dir: bool, download: bool): + + """Helper function that checks the given OPA executable directory, + and creates it if it doesn't exist (and the user hasn't suppressed it). + The OPA executable is downloaded to this directory, also if it doesn't + exist and the user hasn't suppressed it. + + :param opa_dir: OPA executable directory. + :param create_dir: create OPA directory (if needed) if True. + :param download: if True, download the OPA executable if the directory + exists and the OPA executable is missing. + """ + + if not opa_dir.exists() and create_dir: + print(f' creating: {opa_dir}') + opa_dir.mkdir(exist_ok = True) + + if opa_dir.exists() and download: + + # The OPA directory exists and the user hasn't suppressed the + # download (e.g., no internet). Get the OPA executable if it's + # not already there. + + opa = opa_filespec(opa_dir) + if not opa.exists(): + print(f' downloading: {opa.name}') + download_opa(opa_dir, verify = True) + + +def validate_opa_dir(opa_dir: Path = None): + + """Validates that the OPA executable exists in the given directory or + in a directory along the user's PATH. + + :param opa_dir: [optional] location of the OPA executable. + + :return: True if the OPA executable exists; False otherwise. + """ + + if opa_dir and not opa_dir.is_dir(): + log.warning('? %s - OPA directory not found', opa_dir) + return False + + try: + opa_exe = find_opa(opa_dir) + + if opa_exe: + where = ('' if opa_dir and opa_dir.samefile(opa_exe.parent) + else ' from PATH') + print(f' OPA executable: {opa_exe}{where}') + + except FileNotFoundError: + opa_exe = None + + if not opa_exe: + where = opa_dir or 'PATH' + log.warning('OPA executable not found in %s', where) + + return opa_exe is not None + + +def credentials_file(arguments: argparse.Namespace): + + """Sets the Google API credentials file in the user's configuration. + + :param arguments: arguments collected by the ArgumentParser. + + :return: True if the credentials file was changed in the user's + configuration; False otherwise. + """ + + print('Setup: Google API credentials file') + + check = not arguments.nocheck + config = arguments.user_config + credentials = arguments.credentials + prompt = not arguments.noprompt + + if credentials: + + # The user has explicitly specified the credentials file. We only + # need to check whether the file exists. + + if check and not credentials.is_file(): + raise FileNotFoundError(f'? {credentials} - credentials not found') + + print(f' specified file: {credentials}') + + config.credentials_file = credentials.resolve() + + return True + + if not config.file_exists: + + # The user has no configuration file, so they're starting from scratch. + # If the credentials file exists, it may be in the output directory + # because of a "legacy" setup. + + legacy_credentials = config.output_dir / 'credentials.json' + + if legacy_credentials.is_file(): + print(f' found: {legacy_credentials}') + config.credentials_file = legacy_credentials + return True + + elif config.credentials_file.is_file() or not check: + print(f' {config.credentials_file}') + return False + else: + log.error('? %s - Google credential files missing', + config.credentials_file) + if not prompt: + return False + + # There's no configuration file found, so we have to ask for the location. + + while not credentials: + answer = prompt_string('Google credentials (JSON) file', + config.credentials_file) + + if not answer: + continue + + answer = Path(os.path.expandvars(answer)).expanduser().absolute() + + if not answer.exists(): + log.warning('Google credentials file not found in %s', answer) + else: + print(f' {config.credentials_file}') + + credentials = answer + + config.credentials_file = credentials.resolve() + + return True + + +def find_legacy_dir(config): + + """Looks for a "legacy" setup directory and returns it, if found. + Otherwise, None is returned. + + The initial setup for users was to have them unpack the Scubagoggles + code into their own directory, where the credentials file, OPA executable, + and output directories would also be located. Users may now install + Scubagoggles into the Python "site packages" directory, which is + preferable because it separates the code from the user's data. + + This function attempts to find a legacy setup to avoid having to force + the user to move to the newer configuration - Scubagoggles should just + work with a legacy setup. + + :param UserConfig config: the user's configuration data. + + :return: a legacy directory (containing the credentials and/or + Scubagoggles output files) or None if the directory wasn't found. + """ + + legacy_dir = None + + if not config.file_exists: + + log.debug(' no config file, checking for "legacy" output directory') + + baseline_dir_pattern = f'{default_file_names.output_folder_name}*' + patterns = ('credentials.json', baseline_dir_pattern) + + # A legacy directory is either the user's current working directory + # (because they were instructed to run Scubagoggles from the current + # directory) or the Scubagoggles top directory. If any of the typical + # user files are found in the directory, assume it's a legacy directory. + + for curr_dir in (Path.cwd(), Path(__file__).parent.parent): + + is_legacy = any(len(list(curr_dir.glob(p))) for p in patterns) + + if is_legacy: + log.debug(' found %s', curr_dir) + legacy_dir = curr_dir + break + + return legacy_dir diff --git a/scubagoggles/utils.py b/scubagoggles/utils.py index ae45a454..e3e7aeb6 100644 --- a/scubagoggles/utils.py +++ b/scubagoggles/utils.py @@ -2,10 +2,12 @@ utils.py is for functions that could be used in more than one place """ +import os from pathlib import Path from importlib.metadata import version, PackageNotFoundError + def create_subset_inverted_dict(dictionary: dict, keys: list) -> dict: """ Creates a subset of a dictionary of lists with the list of keys specified. @@ -22,6 +24,7 @@ def create_subset_inverted_dict(dictionary: dict, keys: list) -> dict: inverted_dict.setdefault(value, []).append(key) return inverted_dict + def create_key_to_list(keys: list) -> dict: """ Creates a dictionary of keys -> to empty lists @@ -33,6 +36,7 @@ def create_key_to_list(keys: list) -> dict: dictionary[key] = [] return dictionary + def merge_dicts(dict1: dict, dict2: dict) -> dict: """ Combines two dictionaries of lists that may or may not have the same keys @@ -44,6 +48,7 @@ def merge_dicts(dict1: dict, dict2: dict) -> dict: dict1.setdefault(key, []).extend(values) return dict1 + def rel_abs_path(file_path: str, rel_path) -> str: """ Gets the absolute path combination of the current directory @@ -55,6 +60,7 @@ def rel_abs_path(file_path: str, rel_path) -> str: current_dir = Path(file_path).resolve().parent return (current_dir / rel_path).resolve() + def get_package_version(package: str) -> str: """ Get the current version for a package @@ -64,3 +70,97 @@ def get_package_version(package: str) -> str: return package_version except PackageNotFoundError as e: raise PackageNotFoundError("Package was not found") from e + + +def path_parser(value) -> Path: + + """Given a string value, this function returns an absolute Path. The + value may contain a leading "~" to indicate the user's home directory, + and may use environment variables (e.g., $HOME). + + :param str value: directory or file specification + + :return: absolute Path + """ + + path_value = Path(os.path.expandvars(value)).expanduser().absolute() + + return path_value + + +def prompt_boolean(prompt: str, default: bool = True) -> bool: + + """Asks the user for a Yes/No answer to a given prompt. + + :param str prompt: the question/confirmation to ask the user. + + :param bool default: [optional] the default response if the user presses + "enter" ("return"). It defaults to Yes (True). + + :return: True if user responds Yes; False otherwise. + """ + + suffix = '[Yes/no]? ' if default else '[yes/No]? ' + + # This handles when the user enters EOF (which is ^Z in Windows or ^D + # in other OS environments). It's assumed that this response is + # equivalent to ^C (user abort). + + try: + answer = input(f'{prompt} {suffix}').strip() + + except EOFError as e: + raise KeyboardInterrupt() from e + + return (not answer and default) or (answer and strtobool(answer)) + + +def prompt_string(prompt: str, default: str = None) -> str: + + """Asks the user to enter a string to a given prompt. + + :param str prompt: the question/confirmation to ask the user. + + :param str default: [optional] the default string response to return + if the user presses "enter" ("return"). It defaults to None. + + :return: entered string or default. + """ + + suffix = f' [{default}]' if default else '' + + # This handles when the user enters EOF (which is ^Z in Windows or ^D + # in other OS environments). It's assumed that this response is + # equivalent to ^C (user abort). + + try: + answer = input(f'{prompt}{suffix}? ').strip() + + except EOFError as e: + raise KeyboardInterrupt() from e + + return answer if answer else default + + +def strtobool(value: str) -> bool: + + """Convert a string representation of truth to a boolean (True/False). + + True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values + are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if + 'value' is anything else. + + :param str value: string representing a boolean value. + + :return: True if string indicates "true"; False if string indicates + "false". + """ + + value = value.strip().lower() + + if value in {'y', 'yes', 't', 'true', 'on', '1'}: + return True + if value in {'n', 'no', 'f', 'false', 'off', '0'}: + return False + + raise ValueError(f'strtobool("{value}"): invalid truth value') diff --git a/scubagoggles/utils/build.sh b/scubagoggles/utils/build.sh new file mode 100755 index 00000000..882801b5 --- /dev/null +++ b/scubagoggles/utils/build.sh @@ -0,0 +1,147 @@ +#!/usr/bin/env bash + +# This is the build procedure for creating both the wheel and source (.tar.gz) +# distribution files for ScubaGoggles. For a clean build process, this +# procedure does the following: +# +# 1. Creates a new Python virtual environment for the build. +# 2. Creates a new Git clone of the ScubaGoggles repository. Optionally, +# the specified branch or version tag is checked out. +# 3. Using the clone from the previous step, installs ScubaGoggles in +# the build virtual environment. +# 4. Builds the ScubaGoggles package distribution files and copies them +# to a destination directory. +# 5. Cleans up the virtual environment and repository directories that were +# created for the build process. +# +# The directories are created in the invoking user's temporary directory. +# This script will attempt to clean these up before exiting, but they will +# ultimately get cleaned up by the temporary directory management process +# used by the operating system. +# +# What's left after this script completes are the two distribution files +# (.whl & .tar.gz) for the ScubaGoggles package. They are copied to the +# user's working directory when this script was invoked, or the directory +# specified in the options. +# +# General users should install the wheel distribution. Anyone interested in +# ScubaGoggles development may be interested in the source distribution. + +set -e +shopt -s expand_aliases + +gitTag= +outDir="$PWD" +scubaGogglesGit='git@github.com:mitre/CISA-SCuBA-GWS-SCB.git' + +usage() +{ + printf 'script usage: %s [options]\n\n' "$(basename "$0")" >&2 + printf ' -h: display usage and exit\n' + printf ' -o : create package files in this directory\n' + printf ' (creates directory if non-existent)\n' + printf ' defaults to %s\n' "$outDir" + printf ' -r : ScubaGoggles Git repository specification\n' + printf ' defaults to %s\n' "$scubaGogglesGit" + printf ' -t : checkout tag or branch for build\n' + printf ' defaults to top of main branch\n' +} + +while getopts ':ho:r:t:' option +do + case "$option" in + h) + usage + exit + ;; + o) + outDir=$(realpath "$OPTARG") + mkdir -p "$outDir" + ;; + r) + scubaGogglesGit="$OPTARG" + ;; + t) + gitTag=$OPTARG + ;; + ?) + usage + exit 1 + ;; + esac +done + +shift $((OPTIND -1)) + +[ "$*" ] && usage && exit 1 + +# Used to distinguish output from this script. +buildPfx='{build>>>}' + +cleanup() { + echo "$buildPfx Performing build cleanup..." + [[ $(type -t deactivate) == function ]] && deactivate + [[ "${DIRSTACK[0]}" == "$scubaGoggles" ]] && popd + rm -rf "$scubaEnv" + rm -rf "$scubaGoggles" +} + +pushd() { builtin pushd "$@" > /dev/null; } + +popd() { builtin popd > /dev/null; } + +if [[ "$OSTYPE" == 'msys' || "$OSTYPE" == 'cygwin' ]] +then + # This is Windows (via Git Bash (msys) or Cygwin). + venvSubdir='Scripts' +else + # Assumed to be linux variant (including macOS). + # python3 must be defined to invoke the correct Python version. + venvSubdir='bin' + alias python=python3 +fi + +scubaEnv=$(mktemp -d -t scuba-env.XXXXXXXXXX) + +scubaGoggles=$(mktemp -d -t scubagoggles.XXXXXXXXXX) + +trap cleanup EXIT + +echo "$buildPfx Creating new Python virtual environment for build..." + +python -m venv "$scubaEnv" + +echo "$buildPfx Cloning Git repository..." + +git clone "$scubaGogglesGit" "$scubaGoggles" + +pushd "$scubaGoggles" + +if [[ -n "$gitTag" ]] +then + echo "$buildPfx Checkout $gitTag" + git checkout "$gitTag" +fi + +echo "$buildPfx Activate Python virtual environment..." + +source "$scubaEnv/$venvSubdir/activate" + +echo "$buildPfx Install requirements and editable ScubaGoggles..." + +pip install -r requirements.txt + +pip install -e . + +echo "$buildPfx Build distribution files..." + +python -m build + +wheelFile=$(realpath dist/scubagoggles-*.whl) +tarFile=$(realpath dist/scubagoggles-*.tar.gz) + +for file in "$wheelFile" "$tarFile" +do + echo "$buildPfx Copying $file to $outDir" + cp "$file" "$outDir/$(basename "$file")" +done diff --git a/utils/checkOPAHash.sh b/scubagoggles/utils/checkOPAHash.sh old mode 100644 new mode 100755 similarity index 100% rename from utils/checkOPAHash.sh rename to scubagoggles/utils/checkOPAHash.sh diff --git a/utils/test_opa.sh b/scubagoggles/utils/test_opa.sh old mode 100644 new mode 100755 similarity index 100% rename from utils/test_opa.sh rename to scubagoggles/utils/test_opa.sh diff --git a/utils/update_policyid_version.py b/scubagoggles/utils/update_policyid_version.py similarity index 95% rename from utils/update_policyid_version.py rename to scubagoggles/utils/update_policyid_version.py index c99ee861..c4e13150 100644 --- a/utils/update_policyid_version.py +++ b/scubagoggles/utils/update_policyid_version.py @@ -10,9 +10,9 @@ import re CURRENT_VERSION = 'v0.1' -REPLACEMENT_VERSION ='v0.3' +REPLACEMENT_VERSION ='v0.2' -PATH_TO_FILES = '../' +PATH_TO_FILES = os.path.dirname(os.path.dirname(__file__)) FILES_TO_PROCESS = ['.md','rego','.csv'] def replace_last_n_chars(match): diff --git a/scubagoggles/version.py b/scubagoggles/version.py new file mode 100644 index 00000000..f1bc0798 --- /dev/null +++ b/scubagoggles/version.py @@ -0,0 +1,356 @@ +"""Module that handles the ScubaGoggles version number. +""" + +import argparse +import csv +import logging +import re + +from pathlib import Path + +from scubagoggles import __version__ + +log = logging.getLogger(__name__) + + +class Version: + + """ScubaGoggles version number implementation. + + The OFFICIAL version number for ScubaGoggles is defined in the package's + __init__.py file. All references to the ScubaGoggles version number are + derived from this value. + + Instantiation of this class is not necessary, as all methods are either + class and/or static methods. + """ + + # See the comments in the initialize() method for the content of the + # following class variables. + + current = None + + name = 'ScubaGoggles' + + number = None + + with_name = None + + major, minor, build = (None, None, None) + + suffix = None + + _code_root = Path(__file__).parent + + # The following regular expression is used to locate the policy ID (with + # version suffix) within a string. It separates the policy ID from the + # suffix, so it can be replaced when the version number is updated. + + _version_regex = r'(?PGWS\.\w+\.\d+\.\d+)(?Pv\d+\.\d+)' + + version_re = re.compile(_version_regex, re.IGNORECASE) + + @classmethod + def initialize(cls, version = __version__): + + """Initialize class variables containing version number information. + + This method is called during the one-time initialization of this + module (when it is first imported). This is also used when the + version number changes. + + :param str version: [optional] Version number string in + '..' format. By default, the current version + number is used. A different version is specified only when + updating the version number. + """ + + # The following attributes are meant for public access. + # 'current' is the version number with 'v' as a prefix (e.g., 'v1.0.0'). + # 'number' is the version number without the 'v' (e.g., '1.0.0'). + # 'with_name' contains the tool name, ScubaGoggles, with the version. + # 'major', 'minor', and 'build' are the separate integer components of + # the version number. + + cls.current = f'v{version}' + + cls.number = version + + cls.with_name = f'{cls.name} {cls.current}' + + cls.major, cls.minor, cls.build = [int(v) for v in version.split('.')] + + # This is the version suffix used at the end of policy IDs + # (e.g., 'GWS.CHAT.1.0.v1.0', where 'v1.0' is the version suffix). + + cls.suffix = f'v{cls.major}.{cls.minor}' + + @classmethod + def command_dispatch(cls, arguments: argparse.Namespace): + + """Dispatch method for the ScubaGoggles 'version' subcommand. With + no options, this displays the current version number to the user. + + For developers, the 'check' option validates that the version numbering + is consistent throughout the code base. The 'upgrade' option will + modify all files to replace the version number with the one provided + on the command line. + + See the comments for this class regarding the ScubaGoggles version + number. + + :param arguments: arguments collected by the ArgumentParser. + """ + + if arguments.check: + print('ScubaGoggles version check') + cls.check_versions() + elif arguments.upgrade: + print(f'ScubaGoggles version upgrade ({arguments.upgrade})') + cls.set(arguments.upgrade) + else: + print(cls.with_name) + + @classmethod + def check_versions(cls, update: bool = False) -> bool: + + """Checks the versions throughout the ScubaGoggles files to ensure + that all version number occurrences are consistent with the current + official version number. + + :param bool update: update the versions in all files in the code base + if True; otherwise, check the versions all files to make sure + they match the current version (default). + :return: True if at least 1 file was modified (update is True) or a + version inconsistency was found. + """ + + # The meaning of 'modified' is dependent on the value of 'update'. + # For update True, it'll mean at least 1 file was modified; for + # False, it means a version inconsistency was found. + + modified = cls.check_or_update_readme(update) + + for md_file in cls._code_root.glob('**/*.md'): + modified |= cls.check_or_update_md(md_file, update) + + # The drift rules CSV files are not part of the code content, and + # exist in the directory above the code root. + + drift_rules_dir = cls._code_root.parent / 'drift-rules' + + if not drift_rules_dir.is_dir(): + raise NotADirectoryError(f'{drift_rules_dir} - drift rules ' + 'directory missing') + + for csv_file in drift_rules_dir.glob('*.csv'): + modified |= cls.check_or_update_csv(csv_file, update) + + return modified + + @classmethod + def check_or_update_csv(cls, drift_csv: Path, update: bool = False) -> bool: + + """Validates the ScubaGoggles version number embedded in the given + drift monitoring rules CSV file. + + :param Path drift_csv: file specification for a drift CSV file. + :param bool update: update the versions in the file if True; otherwise, + check the versions in the file to make sure they match the current + version (default). + :return: True if file was modified (update) or version(s) in the + file do NOT match the current version; False if the file is + consistent with the current version. + """ + + log.debug(str(drift_csv)) + + with drift_csv.open(encoding = 'utf-8') as csvfile: + + reader = csv.DictReader(csvfile) + + field_names = reader.fieldnames + + contents = list(reader) + + logger = log.debug if update else log.error + + modified = False + + for index, row in enumerate(contents): + policy_id = cls.version_re.sub(f'\\g{cls.suffix}', + row['PolicyId']) + + if policy_id != row['PolicyId']: + if update: + row['PolicyId'] = policy_id + + if not modified: + logger('%s:', str(drift_csv)) + modified = True + + logger(' %3d) {"PolicyId": %s}', index + 2, row['PolicyId']) + + if modified and update: + with drift_csv.open(mode = 'w', encoding = 'utf-8') as csvfile: + writer = csv.DictWriter(csvfile, + field_names, + lineterminator = '\n') + writer.writeheader() + for row in contents: + writer.writerow(row) + + return modified + + @classmethod + def check_or_update_md(cls, md_file: Path, update: bool = False) -> bool: + + """Validates the ScubaGoggles version number embedded in the given + Markdown file. + + :param Path md_file: file specification for a Markdown file. + :param bool update: update the versions in the file if True; otherwise, + check the versions in the file to make sure they match the current + version (default). + :return: True if file was modified (update) or version(s) in the + file do NOT match the current version; False if the file is + consistent with the current version. + """ + + log.debug(str(md_file)) + + contents = md_file.read_text(encoding = 'utf-8').splitlines() + + logger = log.debug if update else log.error + + modified = False + + for index, line in enumerate(contents): + new_line = cls.version_re.sub(f'\\g{cls.suffix}', line) + + if line != new_line: + if update: + contents[index] = new_line + + if not modified: + logger('%s:', str(md_file)) + modified = True + + logger(' %3d) %s', + index + 1, + (new_line if update else line).strip()) + + if modified and update: + md_file.write_text('\n'.join(contents) + '\n', encoding = 'utf-8') + + return modified + + @classmethod + def check_or_update_readme(cls, update: bool = False) -> bool: + + """Validates the ScubaGoggles version number embedded in the top-level + README Markdown file. There are a couple version number references + in URLs located in the file. + + :param bool update: update the versions in the file if True; otherwise, + check the versions in the file to make sure they match the current + version (default). + :return: True if file was modified (update) or version(s) in the + file do NOT match the current version; False if the file is + consistent with the current version. + """ + + readme_file = cls._code_root.parent / 'README.md' + + if not readme_file.exists(): + return False + + log.debug(str(readme_file)) + + contents = readme_file.read_text(encoding = 'utf-8').splitlines() + + logger = log.debug if update else log.error + + modified = False + + # The top-level README file has two places where the version is + # hardcoded. Both references are embedded in a URL. + + tool_regex = f'(?P{cls.name}-)' + r'v\d+(?:\.\d+){2}' + tool_version_re = re.compile(tool_regex) + + scb_re = re.compile(r'(?PGWS_SCB-)v\d+\.\d+') + + for index, line in enumerate(contents): + new_line = tool_version_re.sub(f'\\g{cls.current}', line) + + new_line = scb_re.sub(f'\\g{cls.suffix}', new_line) + + if line != new_line: + if update: + contents[index] = new_line + + if not modified: + logger('%s:', str(readme_file)) + modified = True + + logger(' %3d) %s', + index + 1, + (new_line if update else line).strip()) + + if modified and update: + readme_file.write_text('\n'.join(contents) + '\n', + encoding = 'utf-8') + + return modified + + @classmethod + def set(cls, version: str): + + """Sets the ScubaGoggles OFFICIAL version number and updates version + number references throughout the code base. This is done because + unfortunately certain files (CSV, Markdown) can't reference the + version number in Python code and must hardcode the version. + + :param str version: version number in '..' format. + """ + + match = re.match(r'(?P\d+)\.(?P\d+)\.(?P\d+)$', + version) + if not match: + raise ValueError(f'? "{version}" - version number must conform to ' + '.. format') + + # Change the OFFICIAL version number in the module's __init__.py file. + + init_file = cls._code_root / '__init__.py' + if not init_file.exists(): + raise FileNotFoundError(f'{init_file} - ScubaGoggles module file ' + 'missing') + + contents = init_file.read_text() + + version_defn_regexp = r'__version__\s*=\s*["\']\d+\.\d+\.\d+["\']' + new_contents = re.sub(version_defn_regexp, + f"__version__ = '{version}'", + contents) + + if contents == new_contents: + log.error('? ScubaGoggles version set - no changes made') + return + + log.info('changing ScubaGoggles version to %s', version) + init_file.write_text(new_contents, encoding = 'utf-8') + + # Initialize the class variables using the new version number, and + # update the versions in the files. + + cls.initialize(version) + cls.check_versions(True) + + +# This initializes the class variables during module load. The initialization +# is done this way because re-initialization is necessary when the version +# number is changed, so using a method avoids duplicate code. + +Version.initialize() diff --git a/setup.py b/setup.py index d3a499b8..a1ce6ddc 100644 --- a/setup.py +++ b/setup.py @@ -1,30 +1,8 @@ +"""ScubaGoggles setuptools backend + +Setup configuration is contained in the pyproject.toml file. """ -ScubaGoggles setuptools -""" -from setuptools import setup, find_packages -setup(name='scubagoggles', - version='0.3.0', - description='SCuBA security baseline assessment tool', - author='CISA', - packages=find_packages(exclude=['__pycache__']), - package_data = { - 'scubagoggles': ['reporter/**/*'] - }, - include_package_data=True, - python_requires='>=3.10.0', - install_requires=[ - 'google-api-python-client==2.142.0', - 'google-auth-httplib2==0.2.0', - 'google-auth-oauthlib==1.2.1', - 'MarkupSafe==2.1.5', - 'dnspython==2.6.1', - 'pandas==2.2.0', - 'tqdm==4.66.5', - 'requests==2.32.3', - 'pyyaml==6.0.2' - ], - entry_points={ - 'console_scripts': ['scubagoggles=scubagoggles.main:dive'] - } - ) +from setuptools import setup + +setup()